I have a process I spawn with a Cygwin shell script, and I am unable to kill it with the kill command. Even with the Cygwin kill with the -f option, I get this message:

kill: couldn't open pid 1234

I would like to try to kill it with PsKill, but I cannot find a way to convert the Cygwin PID to a Windows PID that PsKill will understand. How can I do that?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Have you tried running the cygwin kill instead of the bash builtin? If it is a Windows PID then type:

/bin/kill -f 1234

or if it is a Cygwin PID then type:

/bin/kill -9 1234

As far as I know there is no API to Cygwin that you could call to translate a Cygwin PID to a Windows PID. However, you could parse the output of ps -W to do the conversion. Or, if you really, really don't want to do that, then have a look at the source code for the Cygwin ps command, and see where they get the pids from. The Cygwin ps source code is here.. You could write a small utility in C to take the Cygwin pid and give you a Windows pid.

link|improve this answer
Yes, it is the Cygwin kill I'm using. I tried /bin/kill -f -9 1234 and /bin/kill -9 1234 with no success. 1234 is a Cygwin PID. – Jazz Nov 5 '09 at 10:20
1  
If you use -f, then you should give it the Windows PID from ps -W – Michael Dillon Nov 5 '09 at 10:38
Apart from this great answer - sometimes when the process is locked from inside Windows, Cygwin kill spawns the "couldn't open pid 1234" message. The process then needs to be unlocked from inside Windows first. – Secko May 5 '11 at 15:00
feedback

ps -W will show the Windows PID in addition to the Cygwin PID.

Or, you can do it programmatically like this:

#include <sys/cygwin.h>
winpid = cygwin_internal(CW_CYGWIN_PID_TO_WINPID, cygpid);
link|improve this answer
Yes, I know, but I was hoping for a direct way to do this instead of parsing the ps output. – Jazz Nov 5 '09 at 10:22
Added programmatic alternative – Warren Young Nov 5 '09 at 16:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.