Browse Source

src: define getpid() based on OS

94b9948 added unistd.h to src/env.cc in order to use getpid().
However, this doesn't exist on Windows. This commit conditionally
defines getpid() based on the OS.

Fixes: https://github.com/nodejs/node/issues/4145
PR-URL: https://github.com/nodejs/node/pull/4146
Reviewed-By: Brian White <mscdex@mscdex.net>
process-exit-stdio-flushing
cjihrig 9 years ago
parent
commit
a9c0c65f9e
  1. 8
      src/env.cc

8
src/env.cc

@ -1,7 +1,13 @@
#include "env.h" #include "env.h"
#include "env-inl.h" #include "env-inl.h"
#include "v8.h" #include "v8.h"
#include "unistd.h"
#if defined(_MSC_VER)
#define getpid GetCurrentProcessId
#else
#include <unistd.h>
#endif
#include <stdio.h> #include <stdio.h>
namespace node { namespace node {

Loading…
Cancel
Save