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

Side by Side Diff: sysdeps/nacl/readdir.c

Issue 7737022: Change make-syscalls.sh to make syscall interception possible. (Closed) Base URL: http://git.chromium.org/native_client/nacl-glibc.git@master
Patch Set: base => name Created 9 years, 3 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 | « sysdeps/nacl/pselect.c ('k') | sysdeps/nacl/sigaction.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 #include <dirent.h> 2 #include <dirent.h>
3 #include <stddef.h> 3 #include <stddef.h>
4 #include <string.h> 4 #include <string.h>
5 5
6 #include <nacl_dirent.h> 6 #include <nacl_dirent.h>
7 #include <irt_syscalls.h> 7 #include <irt_syscalls.h>
8 8
9 #define __READDIR __readdir 9 #define __READDIR __readdir
10 #define __GETDENTS nacl_getdents_wrapper 10 #define __GETDENTS nacl_getdents_wrapper
11 #define DIRENT_TYPE struct dirent 11 #define DIRENT_TYPE struct dirent
12 #define __READDIR_ALIAS 12 #define __READDIR_ALIAS
13 13
14 #include <sysdeps/nacl/nacl_getdents_wrapper.c> 14 #include <nacl_getdents_wrapper.c>
15 #include <sysdeps/unix/readdir.c> 15 #include <sysdeps/unix/readdir.c>
16 strong_alias (nacl_getdents_wrapper, __getdents) 16 strong_alias (nacl_getdents_wrapper, __getdents)
OLDNEW
« no previous file with comments | « sysdeps/nacl/pselect.c ('k') | sysdeps/nacl/sigaction.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698