in reply to Windows, threads and IPC::Open3

First of all, that won't work. If either pipes fill up, the child will block and never exit. You also don't kill the child on timeout. (I'm blind!)

So let's examine what your original solution doesn't work on Windows:

Using sockets instead of pipes to communicate with the child (as demonstrated here) would solve the first problem, so all that's left would be to use select()'s timeout argument instead of alarm.

And now we'll forget everything I said because we don't want to reinvent the wheel. Just use IPC::Run.

Replies are listed 'Best First'.
Re^2: Windows, threads and IPC::Open3
by bloonix (Monk) on Nov 07, 2010 at 22:53 UTC
    The code example works on Windows Vista. test.pl only calls sleep(20) and the thread will be detached after 3 seconds and the process with $data{pid} is killed. :/
      If either pipes fill up, the child will block and never exit.
      If either pipes fill up, the child will block and never exit.