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

Side by Side Diff: sysdeps/nacl/irt_syscalls.h

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/dl-sysdep.c ('k') | sysdeps/nacl/opendir.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 #ifndef _IRT_SYSCALLS_H 1 #ifndef _IRT_SYSCALLS_H
2 #define _IRT_SYSCALLS_H 2 #define _IRT_SYSCALLS_H
3 3
4 #include <sys/types.h> 4 #include <sys/types.h>
5 #include <stddef.h> 5 #include <stddef.h>
6 #include <fcntl.h> 6 #include <fcntl.h>
7 #include <time.h> 7 #include <time.h>
8 8
9 #include <nacl_stat.h> 9 #include <nacl_stat.h>
10 10
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 #ifndef _LINUX_TYPES_H 86 #ifndef _LINUX_TYPES_H
87 #define ustat __kernel_ustat 87 #define ustat __kernel_ustat
88 #include <linux/sysctl.h> 88 #include <linux/sysctl.h>
89 #undef ustat 89 #undef ustat
90 #ifdef _LIBC 90 #ifdef _LIBC
91 #include <misc/sys/ustat.h> 91 #include <misc/sys/ustat.h>
92 #else 92 #else
93 #include <sys/ustat.h> 93 #include <sys/ustat.h>
94 #endif 94 #endif
95 #endif 95 #endif
96 #ifndef _LIBC
97 #include <mqueue.h>
98 #endif
99 96
100 #include <linux/getcpu.h> 97 #include <linux/getcpu.h>
101 #include <linux/posix_types.h> 98 #include <linux/posix_types.h>
102 #include <sys/poll.h> 99 #if !defined (_LIBC) || defined(IS_IN_librt)
100 #include <mqueue.h>
101 #endif
102 #include <pthread.h>
103 #include <sched.h> 103 #include <sched.h>
104 #include <signal.h> 104 #include <signal.h>
105 #include <streams/stropts.h> 105 #include <streams/stropts.h>
106 #include <sys/epoll.h> 106 #include <sys/epoll.h>
107 #include <sys/poll.h>
107 #include <sys/ptrace.h> 108 #include <sys/ptrace.h>
108 #include <sys/times.h> 109 #include <sys/times.h>
109 #include <sys/types.h> 110 #include <sys/types.h>
110 #include <sys/wait.h> 111 #include <sys/wait.h>
111 #include <time.h> 112 #include <time.h>
112 #include <utime.h> 113 #include <utime.h>
114 #include <sys/msg.h>
115 #include <sys/sem.h>
116 #include <sys/shm.h>
117 #include <sys/sysinfo.h>
118 #include <sys/time.h>
119 #include <sys/timex.h>
120 #include <sys/types.h>
121 #include <sys/utsname.h>
122 #ifdef __i386__
123 #include <sys/vm86.h>
124 #endif
125 #include <unistd.h>
113 126
114 #ifdef _LIBC 127 #ifdef _LIBC
115 struct robust_list_head; 128 struct robust_list_head;
116 #else 129 #else
117 struct robust_list_head 130 struct robust_list_head
118 { 131 {
119 void *list; 132 void *list;
120 long int futex_offset; 133 long int futex_offset;
121 void *list_op_pending; 134 void *list_op_pending;
122 }; 135 };
123 #endif 136 #endif
124 137
125 #endif 138 #endif
126 #endif 139 #endif
OLDNEW
« no previous file with comments | « sysdeps/nacl/dl-sysdep.c ('k') | sysdeps/nacl/opendir.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698