HomeSort by relevance Sort by last modified time
    Searched defs:EFD_CLOEXEC (Results 1 - 5 of 5) sorted by null

  /bionic/libc/include/sys/
eventfd.h 37 #define EFD_CLOEXEC O_CLOEXEC
  /external/strace/xlat/
efd_flags.h 5 #if defined EFD_CLOEXEC || defined O_CLOEXEC
6 #if !(defined(EFD_CLOEXEC) || (defined(HAVE_DECL_EFD_CLOEXEC) && HAVE_DECL_EFD_CLOEXEC))
7 # define EFD_CLOEXEC O_CLOEXEC
23 #if defined EFD_CLOEXEC || defined O_CLOEXEC
24 XLAT(EFD_CLOEXEC),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
eventfd.h 33 EFD_CLOEXEC = 02000000,
34 #define EFD_CLOEXEC EFD_CLOEXEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
eventfd.h 33 EFD_CLOEXEC = 02000000,
34 #define EFD_CLOEXEC EFD_CLOEXEC
  /external/ltp/testcases/kernel/syscalls/eventfd2/
eventfd2_01.c 31 /* patch the only flag support is EFD_CLOEXEC which causes the close-on-exec */
32 /* flag for the returned file descriptor to be set. A new name EFD_CLOEXEC is */
66 #define EFD_CLOEXEC O_CLOEXEC
108 fd = ltp_syscall(__NR_eventfd2, 1, EFD_CLOEXEC);
110 tst_brkm(TFAIL, cleanup, "eventfd2(EFD_CLOEXEC) failed");
118 "eventfd2(EFD_CLOEXEC) does not set close-on-exec flag");
121 tst_resm(TPASS, "eventfd2(EFD_CLOEXEC) Passed");

Completed in 552 milliseconds