Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(638)

Unified Diff: sysdeps/nacl/irt_syscalls.c

Issue 10095010: removed epoll_create1 (EPOLL_CLOEXEC is not applicable to NaCl, as there is no possibility to fork)… (Closed) Base URL: http://git.chromium.org/native_client/nacl-glibc.git@master
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sysdeps/nacl/irt_syscalls.c
diff --git a/sysdeps/nacl/irt_syscalls.c b/sysdeps/nacl/irt_syscalls.c
index 7ffd47e43e458d1dfeedc3c24ed4a5e777dcb8a4..8c66eb05e224e1aa9e2b1c980363c79b703810a8 100644
--- a/sysdeps/nacl/irt_syscalls.c
+++ b/sysdeps/nacl/irt_syscalls.c
@@ -325,7 +325,6 @@ int (*__nacl_irt_recvfrom) (int sockfd, void *buf, size_t len, int flags,
struct sockaddr *dest_addr, socklen_t* addrlen, int* ret);
int (*__nacl_irt_epoll_create) (int size);
-int (*__nacl_irt_epoll_create1 )(int flags);
int (*__nacl_irt_epoll_ctl) (int epfd, int op, int fd,
struct epoll_event *event);
int (*__nacl_irt_epoll_pwait) (int epfd, struct epoll_event *events,
@@ -611,7 +610,6 @@ init_irt_table (void)
__nacl_irt_getcwd = not_implemented;
__nacl_irt_epoll_create = not_implemented;
- __nacl_irt_epoll_create1 = not_implemented;
__nacl_irt_epoll_ctl = not_implemented;
__nacl_irt_epoll_pwait = not_implemented;
__nacl_irt_epoll_wait = not_implemented;

Powered by Google App Engine
This is Rietveld 408576698