HomeSort by: relevance | last modified time | path
    Searched refs:epoll (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/lib/libc/sys/
epoll.c 1 /* $NetBSD: epoll.c,v 1.1 2023/07/28 18:19:00 christos Exp $ */
29 __RCSID("$NetBSD: epoll.c,v 1.1 2023/07/28 18:19:00 christos Exp $");
31 #include <sys/epoll.h>
  /src/external/bsd/libevent/dist/
epoll_sub.c 34 #include <sys/epoll.h>
epoll.c 1 /* $NetBSD: epoll.c,v 1.1.1.3 2021/04/07 02:43:14 christos Exp $ */
30 __RCSID("$NetBSD: epoll.c,v 1.1.1.3 2021/04/07 02:43:14 christos Exp $");
42 #include <sys/epoll.h>
66 /* Since Linux 2.6.17, epoll is able to report about peer half-closed connection
103 "epoll (with changelist)",
121 "epoll",
135 /* On Linux kernels at least up to 2.6.24.4, epoll can't handle timeout
189 The epoll interface ordinarily gives us one-millisecond precision,
253 "Epoll %s(%d) on fd %d " status ". " \
306 event_warn("Epoll MOD(%d) on %d retried as ADD; that failed too"
    [all...]
CMakeLists.txt 403 sys/epoll.h
836 list(APPEND SRC_CORE epoll.c)
1211 list(APPEND BACKENDS EPOLL)
1309 # Epoll has some extra settings.
1310 if (${BACKEND} STREQUAL "EPOLL")
  /src/external/bsd/ntp/dist/sntp/libevent/
epoll_sub.c 35 #include <sys/epoll.h>
epoll.c 1 /* $NetBSD: epoll.c,v 1.6 2024/08/18 20:47:21 christos Exp $ */
41 #include <sys/epoll.h>
65 /* Since Linux 2.6.17, epoll is able to report about peer half-closed connection
102 "epoll (with changelist)",
120 "epoll",
134 /* On Linux kernels at least up to 2.6.24.4, epoll can't handle timeout
188 The epoll interface ordinarily gives us one-millisecond precision,
252 "Epoll %s(%d) on fd %d " status ". " \
305 event_warn("Epoll MOD(%d) on %d retried as ADD; that failed too",
309 event_debug(("Epoll MOD(%d) on %d retried as ADD; succeeded."
    [all...]
CMakeLists.txt 403 sys/epoll.h
836 list(APPEND SRC_CORE epoll.c)
1211 list(APPEND BACKENDS EPOLL)
1309 # Epoll has some extra settings.
1310 if (${BACKEND} STREQUAL "EPOLL")
  /src/sys/compat/netbsd32/
netbsd32_epoll.c 34 #include <sys/epoll.h>
netbsd32_conv.h 46 #include <sys/epoll.h>
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/linux/
epoll.d 2 * D header file to interface with the Linux epoll API (http://man7.org/linux/man-pages/man7/epoll.7.html).
9 module core.sys.linux.epoll;
151 * Creates an epoll instance.
166 * Creates an epoll instance.
179 * Manipulate an epoll instance
182 * epfd = an epoll file descriptor instance
194 * Wait for events on an epoll instance.
198 * epfd = an epoll file descriptor instance
211 * Wait for events on an epoll instanc
    [all...]
  /src/tests/kernel/
t_epoll.c 36 #include <sys/epoll.h>
177 "Checks that epoll disallows watching itself");
194 atf_tc_set_md_var(tc, "descr", "Checks that epoll disallows loops");
215 "Checks that epoll fails when the watch depth exceeds 5");
  /src/external/mit/libuv/dist/src/unix/
epoll.c 25 #include <sys/epoll.h>
66 /* Remove the file descriptor from the epoll.
68 * in another process, causing repeated junk epoll events.
347 /* Work around an epoll quirk where it sometimes reports just the
353 * Note to self: happens when epoll reports EPOLLIN|EPOLLHUP, the user
linux-core.c 22 * EPOLL* counterparts. We use the POLL* variants in this file because that
38 #include <sys/epoll.h>
  /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/linux/
DirectoryWatcher-linux.cpp 27 #include <sys/epoll.h>
36 /// Pipe for inter-thread synchronization - for epoll-ing on multiple
147 // Using pipe so we can epoll two file descriptors at once - inotify and
  /src/sys/kern/
sys_epoll.c 37 #include <sys/epoll.h>
114 * Structure converting function from epoll to kevent.
164 * Structure converting function from kevent to epoll. In a case
198 * epoll events that are located in args->eventlist.
246 * Load epoll filter, convert it to kevent filter and load it into
326 /* CTL_DEL means unregister this fd with this epoll */
375 * Wait for a filter to be triggered on the epoll file descriptor.
  /src/external/mit/libuv/dist/test/
test-poll.c 36 # include <sys/epoll.h>
  /src/external/bsd/wpa/dist/src/utils/
eloop.c 18 #error Do not define both of poll and epoll
35 #include <sys/epoll.h>
209 * Exceptions are always checked when using epoll, but I suppose it's
329 wpa_printf(MSG_ERROR, "%s: malloc for epoll failed: %s",
1178 "epoll"
1331 * We can use epoll() here. But epoll() requres 4 system calls.
1333 * epoll fd. So select() is better for performance here.
  /src/external/ibm-public/postfix/dist/
makedefs 61 # Do not build with Linux EPOLL support.
62 # By default, EPOLL support is compiled in on platforms that
597 # Kernel 2.6 added EPOLL
605 elif [ ! -e /usr/include/sys/epoll.h ]
612 #include <sys/epoll.h>
  /src/external/bsd/dhcpcd/dist/src/
eloop.c 40 * Both epoll(7) and kqueue(2) require an extra fd per process to manage
45 * epoll avoids the resource limit RLIMIT_NOFILE Linux poll stupidly applies.
111 #include <sys/epoll.h>
  /src/external/gpl3/gcc/dist/c++tools/
server.cc 70 // Select or epoll
74 #include <sys/epoll.h>
452 /* Manipulate the EPOLL state, or do nothing, if there is epoll. */
527 // We've changed direction, so update epoll
  /src/external/gpl3/gcc.old/dist/c++tools/
server.cc 70 // Select or epoll
74 #include <sys/epoll.h>
452 /* Manipulate the EPOLL state, or do nothing, if there is epoll. */
527 // We've changed direction, so update epoll
  /src/external/ibm-public/postfix/dist/src/util/
events.c 189 * Kernel-based event filters (kqueue, /dev/poll, epoll). We use the
427 * Linux epoll supports no system call to find out what descriptors are
431 * Linux epoll does support application context pointers. Unfortunately,
436 * Linux epoll silently unregisters a descriptor from its filter when the
443 #include <sys/epoll.h>
448 static int event_epollfd; /* epoll handle */
761 * them. With kernel-based filters (kqueue, /dev/poll, epoll) it's
816 * them. With kernel-based filters (kqueue, /dev/poll, epoll) it's
  /src/external/mpl/dhcp/dist/
configure 1477 --enable-epoll use Linux epoll (default is no)
6852 BINDIOMUX="--disable-kqueue --disable-epoll --disable-devpoll"
6853 # check kqueue/epoll/devpoll alternative to select
6866 # Check whether --enable-epoll was given.
6874 BINDIOMUX="--enable-epoll"
6875 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --enable-epoll is not supported: it may lead to issues such as server looping" >&5
6876 $as_echo "$as_me: WARNING: --enable-epoll is not supported: it may lead to issues such as server looping" >&2;}
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_posix.cc 154 #include <sys/epoll.h>
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_platform_limits_posix.cpp 162 #include <sys/epoll.h>

Completed in 57 milliseconds

1 2