Home
last modified time | relevance | path

Searched refs:EFD_CLOEXEC (Results 1 – 10 of 10) sorted by relevance

/freebsd/sys/sys/
H A Deventfd.h37 #define EFD_CLOEXEC 0x00100000 macro
/freebsd/contrib/ntp/sntp/libevent/
H A Dutil-internal.h528 #ifdef EFD_CLOEXEC
529 #define EVUTIL_EFD_CLOEXEC EFD_CLOEXEC
H A Devutil.c2734 #if defined(EFD_CLOEXEC) && defined(EFD_NONBLOCK) in evutil_eventfd_()
/freebsd/contrib/libevent/
H A Dutil-internal.h528 #ifdef EFD_CLOEXEC
529 #define EVUTIL_EFD_CLOEXEC EFD_CLOEXEC
H A Devutil.c2734 #if defined(EFD_CLOEXEC) && defined(EFD_NONBLOCK) in evutil_eventfd_()
/freebsd/sys/kern/
H A Dsys_eventfd.c51 _Static_assert(EFD_CLOEXEC == O_CLOEXEC, "Mismatched EFD_CLOEXEC");
H A Dsys_generic.c968 if ((ae->flags & EFD_CLOEXEC) != 0) in kern_specialfd()
1009 if ((ae.flags & ~(EFD_CLOEXEC | EFD_NONBLOCK | in sys___specialfd()
/freebsd/sys/compat/linux/
H A Dlinux_event.c598 flags |= EFD_CLOEXEC; in linux_eventfd2()
/freebsd/crypto/krb5/src/util/verto/
H A Dev.c438 # ifndef EFD_CLOEXEC
440 # define EFD_CLOEXEC O_CLOEXEC macro
442 # define EFD_CLOEXEC 02000000 macro
2397 fds [1] = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC); in evpipe_init()
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/tests/
H A Drtsan_test_interceptors_posix.cpp1752 auto Func = []() { eventfd(EFD_CLOEXEC, 0); }; in TEST()