Browse Source

constants: add O_DIRECT

This will allow to speed up file i/o in some cases by usage of right offsets
and buffer sizes.
v0.9.1-release
Ian Babrou 13 years ago
committed by Ben Noordhuis
parent
commit
3b17f3b80a
  1. 3
      src/node_constants.cc

3
src/node_constants.cc

@ -106,6 +106,9 @@ void DefineConstants(Handle<Object> target) {
NODE_DEFINE_CONSTANT(target, O_SYMLINK); NODE_DEFINE_CONSTANT(target, O_SYMLINK);
#endif #endif
#ifdef O_DIRECT
NODE_DEFINE_CONSTANT(target, O_DIRECT);
#endif
#ifdef S_IRWXU #ifdef S_IRWXU
NODE_DEFINE_CONSTANT(target, S_IRWXU); NODE_DEFINE_CONSTANT(target, S_IRWXU);

Loading…
Cancel
Save