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

Unified Diff: libc/arch-nacl/syscalls/select.c

Issue 156883002: Prep dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/native_client/nacl-bionic.git@master
Patch Set: Created 6 years, 10 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
« no previous file with comments | « libc/arch-nacl/syscalls/mkdir.c ('k') | linker/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libc/arch-nacl/syscalls/select.c
diff --git a/libc/arch-nacl/syscalls/select.c b/libc/arch-nacl/syscalls/select.c
new file mode 100644
index 0000000000000000000000000000000000000000..a51698bc3f3c43ebf5e504d489971037c8f46df3
--- /dev/null
+++ b/libc/arch-nacl/syscalls/select.c
@@ -0,0 +1,9 @@
+#include <errno.h>
+#include <sys/select.h>
+
+int select(int nfds, fd_set *readfds, fd_set *writefds,
+ fd_set *exceptfds, struct timeval *timeout) {
+ errno = ENOSYS;
+ return -1;
+}
+
« no previous file with comments | « libc/arch-nacl/syscalls/mkdir.c ('k') | linker/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698