Sending an arbitrary Signal in Windows? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:04:33Zhttp://stackoverflow.com/feeds/question/140111http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/140111/sending-an-arbitrary-signal-in-windows3Sending an arbitrary Signal in Windows?morsch2008-09-26T15:09:23Z2008-09-26T15:58:44Z
<p>Linux supports sending an arbitrary Posix-Signal such as <code>SIGINT</code> or <code>SIGTERM</code> to a process using the <code>kill</code>-Command. While <code>SIGINT</code> and <code>SIGTERM</code> are just boring old ways to end a process in a friendly or not-so-friendly kind of way, <code>SIGQUIT</code> is meant to trigger a core dump. This can be used to trigger a running Java VM to print out a thread dump, including the stacktraces of all running threads -- neat! After printing the debugging info, the Java VM will continue doing whatever it was doing before; in fact the thread dump just happens in another spawned thread of maximum priority. (You can try this out yourself by using <code>kill -3 <VM-PID></code>.)</p>
<p>Note that you can also register your own signal handlers using the (unsupported!) <code>Signal</code> and <code>SignalHandler</code> classes in the <code>sun.misc</code>-package, so you can have all kinds of fun with it.</p>
<p><em>However, I have yet to find a way to send a signal to a Windows process.</em> Signals are created by certain user inputs: <code>Ctrl-C</code> triggers a <code>SIGINT</code> on both platforms, for instance. But there does not seem to be any utility to manually send a signal to a running, but non-interactive process on Windows. The obvious solution is to use the Cygwin <code>kill</code> executable, but while it can end Windows processes using the appropriate Windows API, I could not send a <code>SIGBREAK</code> (the Windows equivalent to <code>SIGQUIT</code>) with it; in fact I think the only signal it is able to send to Windows processes is <code>SIGTERM</code>.</p>
<p>So, to make a long story short and to repeat the headline: How to I send an arbitrary signal to a process in Windows?</p>
http://stackoverflow.com/questions/140111/sending-an-arbitrary-signal-in-windows/140140#1401401Answer by Steve K for Sending an arbitrary Signal in Windows?Steve K2008-09-26T15:14:33Z2008-09-26T15:14:33Z<p>You can also use jconsole to view the stacktrace of all the running threads. This will work on Windows, and any other OS that supports Java. jconsole also has many other nice features, memory graphs, cpu graphs, etc. </p>
<p>It doesn't answer your original question, but hopefully allows you to get the same results.</p>
<p>If your not familiar with jconsole, check out the <a href="http://java.sun.com/javase/6/docs/technotes/guides/management/jconsole.html" rel="nofollow">Using JConsole</a> documentation.</p>
http://stackoverflow.com/questions/140111/sending-an-arbitrary-signal-in-windows/140148#1401480Answer by Gustavo Carreno for Sending an arbitrary Signal in Windows?Gustavo Carreno2008-09-26T15:15:25Z2008-09-26T15:15:25Z<p>I'm just wondering if the <a href="http://technet.microsoft.com/en-us/sysinternals/bb896649.aspx" rel="nofollow">PsTools</a> from, now Microsoft owned, <a href="http://technet.microsoft.com/en-us/sysinternals/default.aspx" rel="nofollow">SysInternals</a> would help you.</p>
http://stackoverflow.com/questions/140111/sending-an-arbitrary-signal-in-windows/140174#1401742Answer by Mike Dimmick for Sending an arbitrary Signal in Windows?Mike Dimmick2008-09-26T15:20:44Z2008-09-26T15:20:44Z<p>Windows is not POSIX. It does not have signals. The only 'signals' that console programs get is if they call <code>SetConsoleCtrlHandler</code>, in which case it can be notified that the user has pressed Ctrl+C, Ctrl+Break, closed the console window, logged off, or shut the system down.</p>
<p>Everything else is done with IPC, typically with window messages or RPC. Check Sun's documentation to see if there's a way to do what you're asking on the Windows JRE.</p>
http://stackoverflow.com/questions/140111/sending-an-arbitrary-signal-in-windows/140229#1402292Answer by Bob Nadler for Sending an arbitrary Signal in Windows?Bob Nadler2008-09-26T15:29:24Z2008-09-26T15:29:24Z<p>In Windows everything revolves around Win32 messages. I do not believe there is a command line tool to do this, but in C++ you could use <a href="http://msdn.microsoft.com/en-us/library/ms633499.aspx" rel="nofollow">FindWindow</a> to send an arbitrary message to another Windows program. e.g.:</p>
<pre><code>#define WM_MYMSG ( WM_USER+0x100 )
HWND h = ::FindWindow(NULL,_T("Win32App"));
if (h) {
::PostMessage(h, WM_MYMSG, 0, 0);
}
</code></pre>
<p>This can also be done in C# using com interop.</p>
http://stackoverflow.com/questions/140111/sending-an-arbitrary-signal-in-windows/140234#1402340Answer by anjanb for Sending an arbitrary Signal in Windows?anjanb2008-09-26T15:30:32Z2008-09-26T15:30:32Z<p>windows signals are implemented using sockets. Perhaps there is a way to open a connection and send a stream/packet ?? try going through MSDN ?</p>
http://stackoverflow.com/questions/140111/sending-an-arbitrary-signal-in-windows/140291#1402910Answer by R. Bemrose for Sending an arbitrary Signal in Windows?R. Bemrose2008-09-26T15:36:56Z2008-09-26T15:36:56Z<p>Sun warns against using classes in the com.sun hierarchy simply because they can (and do) arbitrarily change between versions and sometimes even between platforms.</p>
http://stackoverflow.com/questions/140111/sending-an-arbitrary-signal-in-windows/140394#1403943Answer by Joe Pineda for Sending an arbitrary Signal in Windows?Joe Pineda2008-09-26T15:58:44Z2008-09-26T15:58:44Z<p>If what you want is to explicitly/programmaticly kill another program/process of any kind, within the SysInternals' pstools there is a small tool named "pskill" that behaves just like Unixen "kill" would do.</p>
<p>If you want something else, keep reading (though I may be wrong on some of the specifics below - it's been eons since I last developed a Windows program in C using only the WinAPI and Charles Petzold's excellent books "Programming for Windows" as a guide).</p>
<p>On Windows you don't properly have "signals", what functions WinMain and WinProc receive from the Operating System are simple <em>messages</em>. For instance, when you click on the "X" button of a window, Windows sends that windows' handler the message WM_CLOSE followed by WM_QUIT. Your program should respond to both as expected - you can actually develop an "unclosable" application. But then if user selects the process from Windows Task Manager and clicks "End Process", the OS will send WM_DESTROY (and another one I don't remember) which basically mean <strong>LEAVE NOW!!</strong>, and will forcefully take the app out of memory if the application doesn't end itself within a "reasonable" period of time (this is set somewhere in the registry).</p>
<p>I remember there was a way to get the HWND of another process' window, once you get that another process could send that window a message thru functions PostMessage and DispatchMessage.</p>