aboutsummaryrefslogtreecommitdiffstats
path: root/libc/include/sys/epoll.h
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-08-17 18:30:57 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-08-17 18:30:57 +0000
commitcf3b0c183d9a6910db6384e6f8095c414041ea0c (patch)
treec9e7e5cb048e24dd067adf8ddd4173562ce1bd68 /libc/include/sys/epoll.h
parent84669837f788d1236124cb2a5b77eb2c47041e82 (diff)
parent9af9120091ceb96641d7c6c645fabad96db4bc0d (diff)
downloadandroid_bionic-cf3b0c183d9a6910db6384e6f8095c414041ea0c.tar.gz
android_bionic-cf3b0c183d9a6910db6384e6f8095c414041ea0c.tar.bz2
android_bionic-cf3b0c183d9a6910db6384e6f8095c414041ea0c.zip
Merge "Revert "Name function arguments in libc headers for Studio.""
Diffstat (limited to 'libc/include/sys/epoll.h')
-rw-r--r--libc/include/sys/epoll.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libc/include/sys/epoll.h b/libc/include/sys/epoll.h
index 6ecd93f81..fcdab43a9 100644
--- a/libc/include/sys/epoll.h
+++ b/libc/include/sys/epoll.h
@@ -53,8 +53,8 @@ __packed
#endif
;
-int epoll_create(int __size);
-int epoll_create1(int __flags) __INTRODUCED_IN(21);
+int epoll_create(int);
+int epoll_create1(int) __INTRODUCED_IN(21);
/*
* Some third-party code uses the existence of EPOLL_CLOEXEC to detect the
@@ -71,10 +71,10 @@ int epoll_create1(int __flags) __INTRODUCED_IN(21);
#undef EPOLL_CLOEXEC
#endif
-int epoll_ctl(int __epoll_fd, int __op, int __fd, struct epoll_event* __event);
-int epoll_wait(int __epoll_fd, struct epoll_event* __events, int __event_count, int __timeout_ms);
-int epoll_pwait(int __epoll_fd, struct epoll_event* __events, int __event_count, int __timeout_ms, const sigset_t* __mask) __INTRODUCED_IN(21);
+int epoll_ctl(int, int, int, struct epoll_event*);
+int epoll_wait(int, struct epoll_event*, int, int);
+int epoll_pwait(int, struct epoll_event*, int, int, const sigset_t*) __INTRODUCED_IN(21);
__END_DECLS
-#endif
+#endif /* _SYS_EPOLL_H_ */