diff options
author | Igor Zinkovsky <igorzi@microsoft.com> | 2011-11-02 15:06:48 -0700 |
---|---|---|
committer | Igor Zinkovsky <igorzi@microsoft.com> | 2011-11-02 17:34:17 -0700 |
commit | 24a69d22a0e7c3e089ab56f5b3800a69a44c6963 (patch) | |
tree | f21e39d2a32c2447568c7112d957cf0f39a1a075 /src/node.h | |
parent | 359a65a6db1c82ed3a4bb7f5be254912771f5062 (diff) | |
download | node-new-24a69d22a0e7c3e089ab56f5b3800a69a44c6963.tar.gz |
process.kill to use uv_kill
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/node.h b/src/node.h index cd56591a82..aebb87db00 100644 --- a/src/node.h +++ b/src/node.h @@ -54,6 +54,10 @@ #define PATH_MAX MAX_PATH #endif +#ifdef _WIN32 +# define SIGKILL 9 +#endif + #include <uv.h> #include <v8.h> #include <sys/types.h> /* struct stat */ |