constants: export O_NONBLOCK

Signed-off-by: Fedor Indutny <fedor@indutny.com>
archived-io.js-v0.10
Fedor Indutny 2014-03-06 20:29:21 +04:00 committed by Fedor Indutny
parent a960d1707a
commit 00890e43fb
1 changed files with 8 additions and 1 deletions

View File

@ -27,11 +27,14 @@
#if !defined(_MSC_VER)
#include <unistd.h>
#endif
#include <fcntl.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
// O_NONBLOCK is not exported, unless _XOPEN_SOURCE is set
#define _XOPEN_SOURCE 500
#include <fcntl.h>
#if HAVE_OPENSSL
# include <openssl/ssl.h>
#endif
@ -110,6 +113,10 @@ void DefineConstants(Handle<Object> target) {
NODE_DEFINE_CONSTANT(target, O_DIRECT);
#endif
#ifdef O_NONBLOCK
NODE_DEFINE_CONSTANT(target, O_NONBLOCK);
#endif
#ifdef S_IRWXU
NODE_DEFINE_CONSTANT(target, S_IRWXU);
#endif