Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "c.h"
00018
00019 #ifdef WIN32
00020
00021 int
00022 pgkill(int pid, int sig)
00023 {
00024 char pipename[128];
00025 BYTE sigData = sig;
00026 BYTE sigRet = 0;
00027 DWORD bytes;
00028
00029
00030 if (sig >= PG_SIGNAL_COUNT || sig < 0)
00031 {
00032 errno = EINVAL;
00033 return -1;
00034 }
00035 if (pid <= 0)
00036 {
00037
00038 errno = EINVAL;
00039 return -1;
00040 }
00041 snprintf(pipename, sizeof(pipename), "\\\\.\\pipe\\pgsignal_%u", pid);
00042
00043 if (CallNamedPipe(pipename, &sigData, 1, &sigRet, 1, &bytes, 1000))
00044 {
00045 if (bytes != 1 || sigRet != sig)
00046 {
00047 errno = ESRCH;
00048 return -1;
00049 }
00050 return 0;
00051 }
00052
00053 if (GetLastError() == ERROR_FILE_NOT_FOUND)
00054 errno = ESRCH;
00055 else if (GetLastError() == ERROR_ACCESS_DENIED)
00056 errno = EPERM;
00057 else
00058 errno = EINVAL;
00059 return -1;
00060 }
00061
00062 #endif