Skip to content

Commit 70974e9

Browse files
bnoordhuisMyles Borins
authored and
Myles Borins
committed
src: use GetCurrentProcessId() for process.pid
Commit a9c0c65 ("src: define getpid() based on OS") made src/env.cc use `GetCurrentProcessId()` on Windows for the PID in log messages. `GetCurrentProcessId()` is also what is used by libuv, OpenSSL and V8. This commit makes `process.pid` use `GetCurrentProcessId()` instead of `_getpid()` for consistency. PR-URL: #4163 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
1 parent 6f4ab1d commit 70974e9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/node.cc

+1-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@
6464
#if defined(_MSC_VER)
6565
#include <direct.h>
6666
#include <io.h>
67-
#include <process.h>
6867
#define strcasecmp _stricmp
69-
#define getpid _getpid
68+
#define getpid GetCurrentProcessId
7069
#define umask _umask
7170
typedef int mode_t;
7271
#else

0 commit comments

Comments
 (0)