xref: /aosp_15_r20/external/libevent/epoll_sub.c (revision 663afb9b963571284e0f0a60f257164ab54f64bf)
1*663afb9bSAndroid Build Coastguard Worker /*
2*663afb9bSAndroid Build Coastguard Worker  * Copyright 2003-2009 Niels Provos <[email protected]>
3*663afb9bSAndroid Build Coastguard Worker  * Copyright 2009-2012 Niels Provos and Nick Mathewson
4*663afb9bSAndroid Build Coastguard Worker  *
5*663afb9bSAndroid Build Coastguard Worker  * Redistribution and use in source and binary forms, with or without
6*663afb9bSAndroid Build Coastguard Worker  * modification, are permitted provided that the following conditions
7*663afb9bSAndroid Build Coastguard Worker  * are met:
8*663afb9bSAndroid Build Coastguard Worker  * 1. Redistributions of source code must retain the above copyright
9*663afb9bSAndroid Build Coastguard Worker  *    notice, this list of conditions and the following disclaimer.
10*663afb9bSAndroid Build Coastguard Worker  * 2. Redistributions in binary form must reproduce the above copyright
11*663afb9bSAndroid Build Coastguard Worker  *    notice, this list of conditions and the following disclaimer in the
12*663afb9bSAndroid Build Coastguard Worker  *    documentation and/or other materials provided with the distribution.
13*663afb9bSAndroid Build Coastguard Worker  * 3. The name of the author may not be used to endorse or promote products
14*663afb9bSAndroid Build Coastguard Worker  *    derived from this software without specific prior written permission.
15*663afb9bSAndroid Build Coastguard Worker  *
16*663afb9bSAndroid Build Coastguard Worker  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17*663afb9bSAndroid Build Coastguard Worker  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18*663afb9bSAndroid Build Coastguard Worker  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19*663afb9bSAndroid Build Coastguard Worker  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20*663afb9bSAndroid Build Coastguard Worker  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21*663afb9bSAndroid Build Coastguard Worker  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22*663afb9bSAndroid Build Coastguard Worker  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23*663afb9bSAndroid Build Coastguard Worker  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24*663afb9bSAndroid Build Coastguard Worker  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25*663afb9bSAndroid Build Coastguard Worker  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26*663afb9bSAndroid Build Coastguard Worker  */
27*663afb9bSAndroid Build Coastguard Worker #include "evconfig-private.h"
28*663afb9bSAndroid Build Coastguard Worker #include <stdint.h>
29*663afb9bSAndroid Build Coastguard Worker 
30*663afb9bSAndroid Build Coastguard Worker #include <sys/param.h>
31*663afb9bSAndroid Build Coastguard Worker #include <sys/types.h>
32*663afb9bSAndroid Build Coastguard Worker #include <sys/syscall.h>
33*663afb9bSAndroid Build Coastguard Worker #include <sys/epoll.h>
34*663afb9bSAndroid Build Coastguard Worker #include <unistd.h>
35*663afb9bSAndroid Build Coastguard Worker #include <errno.h>
36*663afb9bSAndroid Build Coastguard Worker 
37*663afb9bSAndroid Build Coastguard Worker int
epoll_create(int size)38*663afb9bSAndroid Build Coastguard Worker epoll_create(int size)
39*663afb9bSAndroid Build Coastguard Worker {
40*663afb9bSAndroid Build Coastguard Worker #if !defined(__NR_epoll_create) && defined(__NR_epoll_create1)
41*663afb9bSAndroid Build Coastguard Worker 	if (size <= 0) {
42*663afb9bSAndroid Build Coastguard Worker 		errno = EINVAL;
43*663afb9bSAndroid Build Coastguard Worker 		return -1;
44*663afb9bSAndroid Build Coastguard Worker 	}
45*663afb9bSAndroid Build Coastguard Worker 	return (syscall(__NR_epoll_create1, 0));
46*663afb9bSAndroid Build Coastguard Worker #else
47*663afb9bSAndroid Build Coastguard Worker 	return (syscall(__NR_epoll_create, size));
48*663afb9bSAndroid Build Coastguard Worker #endif
49*663afb9bSAndroid Build Coastguard Worker }
50*663afb9bSAndroid Build Coastguard Worker 
51*663afb9bSAndroid Build Coastguard Worker int
epoll_ctl(int epfd,int op,int fd,struct epoll_event * event)52*663afb9bSAndroid Build Coastguard Worker epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)
53*663afb9bSAndroid Build Coastguard Worker {
54*663afb9bSAndroid Build Coastguard Worker 
55*663afb9bSAndroid Build Coastguard Worker 	return (syscall(__NR_epoll_ctl, epfd, op, fd, event));
56*663afb9bSAndroid Build Coastguard Worker }
57*663afb9bSAndroid Build Coastguard Worker 
58*663afb9bSAndroid Build Coastguard Worker int
epoll_wait(int epfd,struct epoll_event * events,int maxevents,int timeout)59*663afb9bSAndroid Build Coastguard Worker epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout)
60*663afb9bSAndroid Build Coastguard Worker {
61*663afb9bSAndroid Build Coastguard Worker #if !defined(__NR_epoll_wait) && defined(__NR_epoll_pwait)
62*663afb9bSAndroid Build Coastguard Worker 	return (syscall(__NR_epoll_pwait, epfd, events, maxevents, timeout, NULL, 0));
63*663afb9bSAndroid Build Coastguard Worker #else
64*663afb9bSAndroid Build Coastguard Worker 	return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
65*663afb9bSAndroid Build Coastguard Worker #endif
66*663afb9bSAndroid Build Coastguard Worker }
67