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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « libc/arch-nacl/syscalls/mkdir.c ('k') | linker/Makefile » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <errno.h>
2 #include <sys/select.h>
3
4 int select(int nfds, fd_set *readfds, fd_set *writefds,
5 fd_set *exceptfds, struct timeval *timeout) {
6 errno = ENOSYS;
7 return -1;
8 }
9
OLDNEW
« 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