mirror of https://github.com/nodejs/node.git
S_IFLNK, S_IFSOCK and SIGCHLD are not available on windows
parent
81b26dc555
commit
cd921c2c62
|
@ -29,8 +29,14 @@ void DefineConstants(Handle<Object> target) {
|
|||
NODE_DEFINE_CONSTANT(target, S_IFCHR);
|
||||
NODE_DEFINE_CONSTANT(target, S_IFBLK);
|
||||
NODE_DEFINE_CONSTANT(target, S_IFIFO);
|
||||
|
||||
#ifdef S_IFLNK
|
||||
NODE_DEFINE_CONSTANT(target, S_IFLNK);
|
||||
#endif
|
||||
|
||||
#ifdef S_IFSOCK
|
||||
NODE_DEFINE_CONSTANT(target, S_IFSOCK);
|
||||
#endif
|
||||
|
||||
#ifdef O_CREAT
|
||||
NODE_DEFINE_CONSTANT(target, O_CREAT);
|
||||
|
@ -498,7 +504,10 @@ void DefineConstants(Handle<Object> target) {
|
|||
#endif
|
||||
|
||||
NODE_DEFINE_CONSTANT(target, SIGTERM);
|
||||
|
||||
#ifdef SIGCHLD
|
||||
NODE_DEFINE_CONSTANT(target, SIGCHLD);
|
||||
#endif
|
||||
|
||||
#ifdef SIGSTKFLT
|
||||
NODE_DEFINE_CONSTANT(target, SIGSTKFLT);
|
||||
|
|
Loading…
Reference in New Issue