summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-15 00:33:57 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-15 00:33:57 +0000
commit277d89447adf85d01f624675db3174189fa0a68a (patch)
treeee5960911ef9b40b75bcf16303e740247dff6eae /win32
parentf5a6a36471123985aa452b6c03d1667c4e447d29 (diff)
* win32/win32.c (kill): fix typo and add signal 0 support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3796 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/win32/win32.c b/win32/win32.c
index c0aff25619..da785c78b8 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -2540,10 +2540,30 @@ kill(int pid, int sig)
}
if (IsWin95()) pid = -pid;
- if ((unsigned int)pid == GetCurrentProcessId() && sig != SIGKILL)
+ if ((unsigned int)pid == GetCurrentProcessId() &&
+ (sig != 0 && sig != SIGKILL))
return raise(sig);
switch (sig) {
+ case 0:
+ RUBY_CRITICAL({
+ HANDLE hProc =
+ OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, (DWORD)pid);
+ if (hProc == NULL || hProc == INVALID_HANDLE_VALUE) {
+ if (GetLastError() == ERROR_INVALID_PARAMETER) {
+ errno = ESRCH;
+ }
+ else {
+ errno = EPERM;
+ }
+ ret = -1;
+ }
+ else {
+ CloseHandle(hProc);
+ }
+ });
+ break;
+
case SIGINT:
RUBY_CRITICAL({
if (!GenerateConsoleCtrlEvent(CTRL_C_EVENT, (DWORD)pid)) {
@@ -2576,7 +2596,7 @@ kill(int pid, int sig)
});
break;
- define:
+ default:
errno = EINVAL;
ret = -1;
break;