diff options
author | root <root> | 2009-07-29 09:36:05 +0000 |
---|---|---|
committer | root <root> | 2009-07-29 09:36:05 +0000 |
commit | d0c0a48c2fb7e111de8206767b5001750982c0e5 (patch) | |
tree | 1da9619143e650c8020be83e9203923f68368127 | |
parent | 0e567d1c49010d6dd78d12b095ad2d86b18b8ba2 (diff) |
*** empty log message ***
-rw-r--r-- | ev.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -388,7 +388,11 @@ extern "C" { # define EFD_NONBLOCK O_NONBLOCK # endif # ifndef EFD_CLOEXEC -# define EFD_CLOEXEC O_CLOEXEC +# ifdef O_CLOEXEC +# define EFD_CLOEXEC O_CLOEXEC +# else +# define EFD_CLOEXEC 02000000 +# endif # endif # ifdef __cplusplus extern "C" { |