*** empty log message ***

master
Marc Alexander Lehmann 2009-07-29 09:36:05 +00:00
parent 010a1e7031
commit 11e844f086
1 changed files with 5 additions and 1 deletions

6
ev.c
View File

@ -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" {