in reply to Re: Implementing signals for Win32 Perl using named pipes
in thread Implementing signals for Win32 Perl using named pipes
Thanks - this is just the information on Windows that I hoped to get from Perlmonks! I wasn't aware that Windows has a process (message) queue. So far, I was under the impression that for a message queue you always needed a window handle.
As for sending "signals" from non-Perl processes, I think this is a lesser priority, because any non-Perl process can always use the moral equivalent of
to send a signal to a Perl process. I think code injection is an interesting toy but far too unreliable/difficult if you want to use IPC. If the easier alternative is shared files, code injection does not look good :).system('perl','-e',"kill SIGWHATEVER => $pid")
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Implementing signals for Win32 Perl using named pipes
by BrowserUk (Patriarch) on Mar 11, 2008 at 11:13 UTC | |
by Corion (Patriarch) on Mar 11, 2008 at 11:50 UTC |