Tools
channel.txt
Associated article: Pipes, Channels, and Perl-Win32
Tags: Tools Open Source
Published source code accompanying the article by Jean-Louis Leroy Perl-Win32, HIP Communications' Win32 port of the Perl language, provides just the tool Jean-Louis needs to write a multifile search-and-replace extension. Also see CHANNEL.ZIP
Pipes, Channels, and Perl-Win32
by Jean-Louis Leroy
Listing One
# ifndef channel_defined
# define channel_defined
# include <queue>
# include <cassert>
# include <windows.h>
template<class T>
class channel
{
public:
class lock
{
public:
lock(...


