in reply to Writing to a Pipe
use IO::Handle; if (!open(TPOOL, "|thread_pool.test)) { print "error: $!"; exit(1); } TPOOL->autoflush(1); while(1) { sleep 10; print TPOOL "This is just a test\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Writing to a Pipe
by cmcmillo (Initiate) on Jun 22, 2007 at 20:28 UTC |