xref: /openbmc/qemu/bsd-user/freebsd/syscall_nr.h (revision 84778508d7403cd32fb4527550738f19aa7b1aa5)
1*84778508Sblueswir1 /*
2*84778508Sblueswir1  * System call numbers.
3*84778508Sblueswir1  *
4*84778508Sblueswir1  * $FreeBSD: src/sys/sys/syscall.h,v 1.224 2008/08/24 21:23:08 rwatson Exp $
5*84778508Sblueswir1  * created from FreeBSD: head/sys/kern/syscalls.master 182123 2008-08-24 21:20:35Z rwatson
6*84778508Sblueswir1  */
7*84778508Sblueswir1 
8*84778508Sblueswir1 #define TARGET_FREEBSD_NR_syscall     0
9*84778508Sblueswir1 #define TARGET_FREEBSD_NR_exit        1
10*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fork        2
11*84778508Sblueswir1 #define TARGET_FREEBSD_NR_read        3
12*84778508Sblueswir1 #define TARGET_FREEBSD_NR_write       4
13*84778508Sblueswir1 #define TARGET_FREEBSD_NR_open        5
14*84778508Sblueswir1 #define TARGET_FREEBSD_NR_close       6
15*84778508Sblueswir1 #define TARGET_FREEBSD_NR_wait4       7
16*84778508Sblueswir1 #define TARGET_FREEBSD_NR_link        9
17*84778508Sblueswir1 #define TARGET_FREEBSD_NR_unlink      10
18*84778508Sblueswir1 #define TARGET_FREEBSD_NR_chdir       12
19*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fchdir      13
20*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mknod       14
21*84778508Sblueswir1 #define TARGET_FREEBSD_NR_chmod       15
22*84778508Sblueswir1 #define TARGET_FREEBSD_NR_chown       16
23*84778508Sblueswir1 #define TARGET_FREEBSD_NR_break       17
24*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd4_getfsstat  18
25*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getpid      20
26*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mount       21
27*84778508Sblueswir1 #define TARGET_FREEBSD_NR_unmount     22
28*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setuid      23
29*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getuid      24
30*84778508Sblueswir1 #define TARGET_FREEBSD_NR_geteuid     25
31*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ptrace      26
32*84778508Sblueswir1 #define TARGET_FREEBSD_NR_recvmsg     27
33*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sendmsg     28
34*84778508Sblueswir1 #define TARGET_FREEBSD_NR_recvfrom    29
35*84778508Sblueswir1 #define TARGET_FREEBSD_NR_accept      30
36*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getpeername 31
37*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getsockname 32
38*84778508Sblueswir1 #define TARGET_FREEBSD_NR_access      33
39*84778508Sblueswir1 #define TARGET_FREEBSD_NR_chflags     34
40*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fchflags    35
41*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sync        36
42*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kill        37
43*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getppid     39
44*84778508Sblueswir1 #define TARGET_FREEBSD_NR_dup 41
45*84778508Sblueswir1 #define TARGET_FREEBSD_NR_pipe        42
46*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getegid     43
47*84778508Sblueswir1 #define TARGET_FREEBSD_NR_profil      44
48*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ktrace      45
49*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getgid      47
50*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getlogin    49
51*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setlogin    50
52*84778508Sblueswir1 #define TARGET_FREEBSD_NR_acct        51
53*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigaltstack 53
54*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ioctl       54
55*84778508Sblueswir1 #define TARGET_FREEBSD_NR_reboot      55
56*84778508Sblueswir1 #define TARGET_FREEBSD_NR_revoke      56
57*84778508Sblueswir1 #define TARGET_FREEBSD_NR_symlink     57
58*84778508Sblueswir1 #define TARGET_FREEBSD_NR_readlink    58
59*84778508Sblueswir1 #define TARGET_FREEBSD_NR_execve      59
60*84778508Sblueswir1 #define TARGET_FREEBSD_NR_umask       60
61*84778508Sblueswir1 #define TARGET_FREEBSD_NR_chroot      61
62*84778508Sblueswir1 #define TARGET_FREEBSD_NR_msync       65
63*84778508Sblueswir1 #define TARGET_FREEBSD_NR_vfork       66
64*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sbrk        69
65*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sstk        70
66*84778508Sblueswir1 #define TARGET_FREEBSD_NR_vadvise     72
67*84778508Sblueswir1 #define TARGET_FREEBSD_NR_munmap      73
68*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mprotect    74
69*84778508Sblueswir1 #define TARGET_FREEBSD_NR_madvise     75
70*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mincore     78
71*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getgroups   79
72*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setgroups   80
73*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getpgrp     81
74*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setpgid     82
75*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setitimer   83
76*84778508Sblueswir1 #define TARGET_FREEBSD_NR_swapon      85
77*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getitimer   86
78*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getdtablesize       89
79*84778508Sblueswir1 #define TARGET_FREEBSD_NR_dup2        90
80*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fcntl       92
81*84778508Sblueswir1 #define TARGET_FREEBSD_NR_select      93
82*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fsync       95
83*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setpriority 96
84*84778508Sblueswir1 #define TARGET_FREEBSD_NR_socket      97
85*84778508Sblueswir1 #define TARGET_FREEBSD_NR_connect     98
86*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getpriority 100
87*84778508Sblueswir1 #define TARGET_FREEBSD_NR_bind        104
88*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setsockopt  105
89*84778508Sblueswir1 #define TARGET_FREEBSD_NR_listen      106
90*84778508Sblueswir1 #define TARGET_FREEBSD_NR_gettimeofday        116
91*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getrusage   117
92*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getsockopt  118
93*84778508Sblueswir1 #define TARGET_FREEBSD_NR_readv       120
94*84778508Sblueswir1 #define TARGET_FREEBSD_NR_writev      121
95*84778508Sblueswir1 #define TARGET_FREEBSD_NR_settimeofday        122
96*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fchown      123
97*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fchmod      124
98*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setreuid    126
99*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setregid    127
100*84778508Sblueswir1 #define TARGET_FREEBSD_NR_rename      128
101*84778508Sblueswir1 #define TARGET_FREEBSD_NR_flock       131
102*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mkfifo      132
103*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sendto      133
104*84778508Sblueswir1 #define TARGET_FREEBSD_NR_shutdown    134
105*84778508Sblueswir1 #define TARGET_FREEBSD_NR_socketpair  135
106*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mkdir       136
107*84778508Sblueswir1 #define TARGET_FREEBSD_NR_rmdir       137
108*84778508Sblueswir1 #define TARGET_FREEBSD_NR_utimes      138
109*84778508Sblueswir1 #define TARGET_FREEBSD_NR_adjtime     140
110*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setsid      147
111*84778508Sblueswir1 #define TARGET_FREEBSD_NR_quotactl    148
112*84778508Sblueswir1 #define TARGET_FREEBSD_NR_nlm_syscall 154
113*84778508Sblueswir1 #define TARGET_FREEBSD_NR_nfssvc      155
114*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd4_statfs     157
115*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd4_fstatfs    158
116*84778508Sblueswir1 #define TARGET_FREEBSD_NR_lgetfh      160
117*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getfh       161
118*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getdomainname       162
119*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setdomainname       163
120*84778508Sblueswir1 #define TARGET_FREEBSD_NR_uname       164
121*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sysarch     165
122*84778508Sblueswir1 #define TARGET_FREEBSD_NR_rtprio      166
123*84778508Sblueswir1 #define TARGET_FREEBSD_NR_semsys      169
124*84778508Sblueswir1 #define TARGET_FREEBSD_NR_msgsys      170
125*84778508Sblueswir1 #define TARGET_FREEBSD_NR_shmsys      171
126*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd6_pread      173
127*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd6_pwrite     174
128*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setfib      175
129*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ntp_adjtime 176
130*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setgid      181
131*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setegid     182
132*84778508Sblueswir1 #define TARGET_FREEBSD_NR_seteuid     183
133*84778508Sblueswir1 #define TARGET_FREEBSD_NR_stat        188
134*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fstat       189
135*84778508Sblueswir1 #define TARGET_FREEBSD_NR_lstat       190
136*84778508Sblueswir1 #define TARGET_FREEBSD_NR_pathconf    191
137*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fpathconf   192
138*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getrlimit   194
139*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setrlimit   195
140*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getdirentries       196
141*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd6_mmap       197
142*84778508Sblueswir1 #define TARGET_FREEBSD_NR___syscall   198
143*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd6_lseek      199
144*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd6_truncate   200
145*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd6_ftruncate  201
146*84778508Sblueswir1 #define TARGET_FREEBSD_NR___sysctl    202
147*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mlock       203
148*84778508Sblueswir1 #define TARGET_FREEBSD_NR_munlock     204
149*84778508Sblueswir1 #define TARGET_FREEBSD_NR_undelete    205
150*84778508Sblueswir1 #define TARGET_FREEBSD_NR_futimes     206
151*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getpgid     207
152*84778508Sblueswir1 #define TARGET_FREEBSD_NR_poll        209
153*84778508Sblueswir1 #define TARGET_FREEBSD_NR___semctl    220
154*84778508Sblueswir1 #define TARGET_FREEBSD_NR_semget      221
155*84778508Sblueswir1 #define TARGET_FREEBSD_NR_semop       222
156*84778508Sblueswir1 #define TARGET_FREEBSD_NR_msgctl      224
157*84778508Sblueswir1 #define TARGET_FREEBSD_NR_msgget      225
158*84778508Sblueswir1 #define TARGET_FREEBSD_NR_msgsnd      226
159*84778508Sblueswir1 #define TARGET_FREEBSD_NR_msgrcv      227
160*84778508Sblueswir1 #define TARGET_FREEBSD_NR_shmat       228
161*84778508Sblueswir1 #define TARGET_FREEBSD_NR_shmctl      229
162*84778508Sblueswir1 #define TARGET_FREEBSD_NR_shmdt       230
163*84778508Sblueswir1 #define TARGET_FREEBSD_NR_shmget      231
164*84778508Sblueswir1 #define TARGET_FREEBSD_NR_clock_gettime       232
165*84778508Sblueswir1 #define TARGET_FREEBSD_NR_clock_settime       233
166*84778508Sblueswir1 #define TARGET_FREEBSD_NR_clock_getres        234
167*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ktimer_create       235
168*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ktimer_delete       236
169*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ktimer_settime      237
170*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ktimer_gettime      238
171*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ktimer_getoverrun   239
172*84778508Sblueswir1 #define TARGET_FREEBSD_NR_nanosleep   240
173*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ntp_gettime 248
174*84778508Sblueswir1 #define TARGET_FREEBSD_NR_minherit    250
175*84778508Sblueswir1 #define TARGET_FREEBSD_NR_rfork       251
176*84778508Sblueswir1 #define TARGET_FREEBSD_NR_openbsd_poll        252
177*84778508Sblueswir1 #define TARGET_FREEBSD_NR_issetugid   253
178*84778508Sblueswir1 #define TARGET_FREEBSD_NR_lchown      254
179*84778508Sblueswir1 #define TARGET_FREEBSD_NR_aio_read    255
180*84778508Sblueswir1 #define TARGET_FREEBSD_NR_aio_write   256
181*84778508Sblueswir1 #define TARGET_FREEBSD_NR_lio_listio  257
182*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getdents    272
183*84778508Sblueswir1 #define TARGET_FREEBSD_NR_lchmod      274
184*84778508Sblueswir1 #define TARGET_FREEBSD_NR_netbsd_lchown       275
185*84778508Sblueswir1 #define TARGET_FREEBSD_NR_lutimes     276
186*84778508Sblueswir1 #define TARGET_FREEBSD_NR_netbsd_msync        277
187*84778508Sblueswir1 #define TARGET_FREEBSD_NR_nstat       278
188*84778508Sblueswir1 #define TARGET_FREEBSD_NR_nfstat      279
189*84778508Sblueswir1 #define TARGET_FREEBSD_NR_nlstat      280
190*84778508Sblueswir1 #define TARGET_FREEBSD_NR_preadv      289
191*84778508Sblueswir1 #define TARGET_FREEBSD_NR_pwritev     290
192*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd4_fhstatfs   297
193*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fhopen      298
194*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fhstat      299
195*84778508Sblueswir1 #define TARGET_FREEBSD_NR_modnext     300
196*84778508Sblueswir1 #define TARGET_FREEBSD_NR_modstat     301
197*84778508Sblueswir1 #define TARGET_FREEBSD_NR_modfnext    302
198*84778508Sblueswir1 #define TARGET_FREEBSD_NR_modfind     303
199*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kldload     304
200*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kldunload   305
201*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kldfind     306
202*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kldnext     307
203*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kldstat     308
204*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kldfirstmod 309
205*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getsid      310
206*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setresuid   311
207*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setresgid   312
208*84778508Sblueswir1 #define TARGET_FREEBSD_NR_aio_return  314
209*84778508Sblueswir1 #define TARGET_FREEBSD_NR_aio_suspend 315
210*84778508Sblueswir1 #define TARGET_FREEBSD_NR_aio_cancel  316
211*84778508Sblueswir1 #define TARGET_FREEBSD_NR_aio_error   317
212*84778508Sblueswir1 #define TARGET_FREEBSD_NR_oaio_read   318
213*84778508Sblueswir1 #define TARGET_FREEBSD_NR_oaio_write  319
214*84778508Sblueswir1 #define TARGET_FREEBSD_NR_olio_listio 320
215*84778508Sblueswir1 #define TARGET_FREEBSD_NR_yield       321
216*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mlockall    324
217*84778508Sblueswir1 #define TARGET_FREEBSD_NR_munlockall  325
218*84778508Sblueswir1 #define TARGET_FREEBSD_NR___getcwd    326
219*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sched_setparam      327
220*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sched_getparam      328
221*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sched_setscheduler  329
222*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sched_getscheduler  330
223*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sched_yield 331
224*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sched_get_priority_max      332
225*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sched_get_priority_min      333
226*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sched_rr_get_interval       334
227*84778508Sblueswir1 #define TARGET_FREEBSD_NR_utrace      335
228*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd4_sendfile   336
229*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kldsym      337
230*84778508Sblueswir1 #define TARGET_FREEBSD_NR_jail        338
231*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigprocmask 340
232*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigsuspend  341
233*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd4_sigaction  342
234*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigpending  343
235*84778508Sblueswir1 #define TARGET_FREEBSD_NR_freebsd4_sigreturn  344
236*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigtimedwait        345
237*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigwaitinfo 346
238*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_get_file      347
239*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_set_file      348
240*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_get_fd        349
241*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_set_fd        350
242*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_delete_file   351
243*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_delete_fd     352
244*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_aclcheck_file 353
245*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_aclcheck_fd   354
246*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattrctl  355
247*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_set_file    356
248*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_get_file    357
249*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_delete_file 358
250*84778508Sblueswir1 #define TARGET_FREEBSD_NR_aio_waitcomplete    359
251*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getresuid   360
252*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getresgid   361
253*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kqueue      362
254*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kevent      363
255*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_set_fd      371
256*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_get_fd      372
257*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_delete_fd   373
258*84778508Sblueswir1 #define TARGET_FREEBSD_NR___setugid   374
259*84778508Sblueswir1 #define TARGET_FREEBSD_NR_nfsclnt     375
260*84778508Sblueswir1 #define TARGET_FREEBSD_NR_eaccess     376
261*84778508Sblueswir1 #define TARGET_FREEBSD_NR_nmount      378
262*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_get_proc      384
263*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_set_proc      385
264*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_get_fd        386
265*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_get_file      387
266*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_set_fd        388
267*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_set_file      389
268*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kenv        390
269*84778508Sblueswir1 #define TARGET_FREEBSD_NR_lchflags    391
270*84778508Sblueswir1 #define TARGET_FREEBSD_NR_uuidgen     392
271*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sendfile    393
272*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mac_syscall 394
273*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getfsstat   395
274*84778508Sblueswir1 #define TARGET_FREEBSD_NR_statfs      396
275*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fstatfs     397
276*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fhstatfs    398
277*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_close  400
278*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_post   401
279*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_wait   402
280*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_trywait        403
281*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_init   404
282*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_open   405
283*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_unlink 406
284*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_getvalue       407
285*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_destroy        408
286*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_get_pid       409
287*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_get_link      410
288*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_set_link      411
289*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_set_link    412
290*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_get_link    413
291*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_delete_link 414
292*84778508Sblueswir1 #define TARGET_FREEBSD_NR___mac_execve        415
293*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigaction   416
294*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigreturn   417
295*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getcontext  421
296*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setcontext  422
297*84778508Sblueswir1 #define TARGET_FREEBSD_NR_swapcontext 423
298*84778508Sblueswir1 #define TARGET_FREEBSD_NR_swapoff     424
299*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_get_link      425
300*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_set_link      426
301*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_delete_link   427
302*84778508Sblueswir1 #define TARGET_FREEBSD_NR___acl_aclcheck_link 428
303*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigwait     429
304*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_create  430
305*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_exit    431
306*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_self    432
307*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_kill    433
308*84778508Sblueswir1 #define TARGET_FREEBSD_NR__umtx_lock  434
309*84778508Sblueswir1 #define TARGET_FREEBSD_NR__umtx_unlock        435
310*84778508Sblueswir1 #define TARGET_FREEBSD_NR_jail_attach 436
311*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_list_fd     437
312*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_list_file   438
313*84778508Sblueswir1 #define TARGET_FREEBSD_NR_extattr_list_link   439
314*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ksem_timedwait      441
315*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_suspend 442
316*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_wake    443
317*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kldunloadf  444
318*84778508Sblueswir1 #define TARGET_FREEBSD_NR_audit       445
319*84778508Sblueswir1 #define TARGET_FREEBSD_NR_auditon     446
320*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getauid     447
321*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setauid     448
322*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getaudit    449
323*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setaudit    450
324*84778508Sblueswir1 #define TARGET_FREEBSD_NR_getaudit_addr       451
325*84778508Sblueswir1 #define TARGET_FREEBSD_NR_setaudit_addr       452
326*84778508Sblueswir1 #define TARGET_FREEBSD_NR_auditctl    453
327*84778508Sblueswir1 #define TARGET_FREEBSD_NR__umtx_op    454
328*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_new     455
329*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sigqueue    456
330*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kmq_open    457
331*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kmq_setattr 458
332*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kmq_timedreceive    459
333*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kmq_timedsend       460
334*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kmq_notify  461
335*84778508Sblueswir1 #define TARGET_FREEBSD_NR_kmq_unlink  462
336*84778508Sblueswir1 #define TARGET_FREEBSD_NR_abort2      463
337*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_set_name        464
338*84778508Sblueswir1 #define TARGET_FREEBSD_NR_aio_fsync   465
339*84778508Sblueswir1 #define TARGET_FREEBSD_NR_rtprio_thread       466
340*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sctp_peeloff        471
341*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sctp_generic_sendmsg        472
342*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sctp_generic_sendmsg_iov    473
343*84778508Sblueswir1 #define TARGET_FREEBSD_NR_sctp_generic_recvmsg        474
344*84778508Sblueswir1 #define TARGET_FREEBSD_NR_pread       475
345*84778508Sblueswir1 #define TARGET_FREEBSD_NR_pwrite      476
346*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mmap        477
347*84778508Sblueswir1 #define TARGET_FREEBSD_NR_lseek       478
348*84778508Sblueswir1 #define TARGET_FREEBSD_NR_truncate    479
349*84778508Sblueswir1 #define TARGET_FREEBSD_NR_ftruncate   480
350*84778508Sblueswir1 #define TARGET_FREEBSD_NR_thr_kill2   481
351*84778508Sblueswir1 #define TARGET_FREEBSD_NR_shm_open    482
352*84778508Sblueswir1 #define TARGET_FREEBSD_NR_shm_unlink  483
353*84778508Sblueswir1 #define TARGET_FREEBSD_NR_cpuset      484
354*84778508Sblueswir1 #define TARGET_FREEBSD_NR_cpuset_setid        485
355*84778508Sblueswir1 #define TARGET_FREEBSD_NR_cpuset_getid        486
356*84778508Sblueswir1 #define TARGET_FREEBSD_NR_cpuset_getaffinity  487
357*84778508Sblueswir1 #define TARGET_FREEBSD_NR_cpuset_setaffinity  488
358*84778508Sblueswir1 #define TARGET_FREEBSD_NR_faccessat   489
359*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fchmodat    490
360*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fchownat    491
361*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fexecve     492
362*84778508Sblueswir1 #define TARGET_FREEBSD_NR_fstatat     493
363*84778508Sblueswir1 #define TARGET_FREEBSD_NR_futimesat   494
364*84778508Sblueswir1 #define TARGET_FREEBSD_NR_linkat      495
365*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mkdirat     496
366*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mkfifoat    497
367*84778508Sblueswir1 #define TARGET_FREEBSD_NR_mknodat     498
368*84778508Sblueswir1 #define TARGET_FREEBSD_NR_openat      499
369*84778508Sblueswir1 #define TARGET_FREEBSD_NR_readlinkat  500
370*84778508Sblueswir1 #define TARGET_FREEBSD_NR_renameat    501
371*84778508Sblueswir1 #define TARGET_FREEBSD_NR_symlinkat   502
372*84778508Sblueswir1 #define TARGET_FREEBSD_NR_unlinkat    503
373*84778508Sblueswir1 #define TARGET_FREEBSD_NR_posix_openpt        504
374