in reply to Re^4: Private temporal files on Windows
in thread Private temporal files on Windows
the parent just get stalled at the $pipe->Connect.
Um..?
async{ my $pipe = Win32::Pipe->new( 'MyPipe' ); while( 1 ) { $pipe->Connect; $pipe->Write( 'The quick brown fox' ); $pipe->Disconnect; } }->detach;
|
---|