1/4 How can I kill a win32 process in perl that I created from fork?
I tried fork + Win32::Process::KillProcess, but I don't think that's
the right process id.
\_ One would assume you could just call kill() on whatever id you got
back from fork(), but that probably makes too much sense.
\_ I've tried kill, and it doesn't kill the proc. I of course tried
that first. It works fine on Unix. I'm using activestate perl.
\_ what are you forking?
\_ The child proc exec's mplayer, the parent monitors it and kills
it under certain conditions. |