xref: /qemu/linux-user/strace.list (revision dc3e83d5)
174d753acSMika Westerberg/*
274d753acSMika Westerberg * Note that if you change format strings in these, check also
374d753acSMika Westerberg * that corresponding print functions are able to handle string
474d753acSMika Westerberg * locking correctly (see strace.c).
574d753acSMika Westerberg */
633189d31Sths#ifdef TARGET_NR_accept
774d753acSMika Westerberg{ TARGET_NR_accept, "accept" , NULL, print_accept, NULL },
833189d31Sths#endif
9fea55615SAleksandar Markovic#ifdef TARGET_NR_accept4
10fea55615SAleksandar Markovic{ TARGET_NR_accept4, "accept4" , NULL, NULL, NULL },
11fea55615SAleksandar Markovic#endif
1233189d31Sths#ifdef TARGET_NR_access
1374d753acSMika Westerberg{ TARGET_NR_access, "access" , NULL, print_access, NULL },
1433189d31Sths#endif
1533189d31Sths#ifdef TARGET_NR_acct
16c42569f6SFilip Bozuta{ TARGET_NR_acct, "acct" , NULL, print_acct, NULL },
1733189d31Sths#endif
1833189d31Sths#ifdef TARGET_NR_add_key
1933189d31Sths{ TARGET_NR_add_key, "add_key" , NULL, NULL, NULL },
2033189d31Sths#endif
2133189d31Sths#ifdef TARGET_NR_adjtimex
2219f59bceSAleksandar Markovic{ TARGET_NR_adjtimex, "adjtimex" , "%s(%p)", NULL,
2319f59bceSAleksandar Markovic                      print_syscall_ret_adjtimex },
2433189d31Sths#endif
2533189d31Sths#ifdef TARGET_NR_afs_syscall
2633189d31Sths{ TARGET_NR_afs_syscall, "afs_syscall" , NULL, NULL, NULL },
2733189d31Sths#endif
2833189d31Sths#ifdef TARGET_NR_alarm
299cbc0578SHelge Deller{ TARGET_NR_alarm, "alarm" , "%s(%u)", NULL, NULL },
3033189d31Sths#endif
3133189d31Sths#ifdef TARGET_NR_aplib
3233189d31Sths{ TARGET_NR_aplib, "aplib" , NULL, NULL, NULL },
3333189d31Sths#endif
3433189d31Sths#ifdef TARGET_NR_arch_prctl
3533189d31Sths{ TARGET_NR_arch_prctl, "arch_prctl" , NULL, NULL, NULL },
3633189d31Sths#endif
3733189d31Sths#ifdef TARGET_NR_arm_fadvise64_64
3833189d31Sths{ TARGET_NR_arm_fadvise64_64, "arm_fadvise64_64" , NULL, NULL, NULL },
3933189d31Sths#endif
4033189d31Sths#ifdef TARGET_NR_bdflush
4133189d31Sths{ TARGET_NR_bdflush, "bdflush" , NULL, NULL, NULL },
4233189d31Sths#endif
4333189d31Sths#ifdef TARGET_NR_bind
44bb10540eSPhilippe Mathieu-Daudé{ TARGET_NR_bind, "bind" , NULL, print_bind, NULL },
4533189d31Sths#endif
46fea55615SAleksandar Markovic#ifdef TARGET_NR_bpf
47fea55615SAleksandar Markovic{ TARGET_NR_bpf, "bpf" , NULL, NULL, NULL },
48fea55615SAleksandar Markovic#endif
4933189d31Sths#ifdef TARGET_NR_break
5033189d31Sths{ TARGET_NR_break, "break" , NULL, NULL, NULL },
5133189d31Sths#endif
5233189d31Sths#ifdef TARGET_NR_brk
5374d753acSMika Westerberg{ TARGET_NR_brk, "brk" , NULL, print_brk, print_syscall_ret_addr },
5433189d31Sths#endif
5533189d31Sths#ifdef TARGET_NR_cachectl
5633189d31Sths{ TARGET_NR_cachectl, "cachectl" , NULL, NULL, NULL },
5733189d31Sths#endif
5833189d31Sths#ifdef TARGET_NR_cacheflush
5933189d31Sths{ TARGET_NR_cacheflush, "cacheflush" , NULL, NULL, NULL },
6033189d31Sths#endif
6133189d31Sths#ifdef TARGET_NR_capget
62ecfec98cSPhilippe Mathieu-Daudé{ TARGET_NR_capget, "capget" , "%s(%p,%p)", NULL, NULL },
6333189d31Sths#endif
6433189d31Sths#ifdef TARGET_NR_capset
65ecfec98cSPhilippe Mathieu-Daudé{ TARGET_NR_capset, "capset" , "%s(%p,%p)", NULL, NULL },
6633189d31Sths#endif
6733189d31Sths#ifdef TARGET_NR_chdir
6874d753acSMika Westerberg{ TARGET_NR_chdir, "chdir" , NULL, print_chdir, NULL },
6933189d31Sths#endif
7033189d31Sths#ifdef TARGET_NR_chmod
7174d753acSMika Westerberg{ TARGET_NR_chmod, "chmod" , NULL, print_chmod, NULL },
7233189d31Sths#endif
7333189d31Sths#ifdef TARGET_NR_chown
745844f4bcSFilip Bozuta{ TARGET_NR_chown, "chown" , NULL, print_chown, NULL },
7533189d31Sths#endif
7633189d31Sths#ifdef TARGET_NR_chown32
7733189d31Sths{ TARGET_NR_chown32, "chown32" , NULL, NULL, NULL },
7833189d31Sths#endif
7933189d31Sths#ifdef TARGET_NR_chroot
801b7695feSHelge Deller{ TARGET_NR_chroot, "chroot" , NULL, print_chroot, NULL },
8133189d31Sths#endif
8238860a03SAleksandar Markovic#ifdef TARGET_NR_clock_adjtime
8338860a03SAleksandar Markovic{ TARGET_NR_clock_adjtime, "clock_adjtime" , NULL, print_clock_adjtime, NULL },
8438860a03SAleksandar Markovic#endif
8533189d31Sths#ifdef TARGET_NR_clock_getres
861a674adfSFilip Bozuta{ TARGET_NR_clock_getres, "clock_getres" , NULL, print_clock_getres,
871a674adfSFilip Bozuta                          print_syscall_ret_clock_getres },
8833189d31Sths#endif
8933189d31Sths#ifdef TARGET_NR_clock_gettime
901a674adfSFilip Bozuta{ TARGET_NR_clock_gettime, "clock_gettime" , NULL, print_clock_gettime,
911a674adfSFilip Bozuta                           print_syscall_ret_clock_gettime },
9233189d31Sths#endif
9333189d31Sths#ifdef TARGET_NR_clock_nanosleep
9433189d31Sths{ TARGET_NR_clock_nanosleep, "clock_nanosleep" , NULL, NULL, NULL },
9533189d31Sths#endif
9633189d31Sths#ifdef TARGET_NR_clock_settime
971a674adfSFilip Bozuta{ TARGET_NR_clock_settime, "clock_settime" , NULL, print_clock_settime, NULL },
9833189d31Sths#endif
9933189d31Sths#ifdef TARGET_NR_clone
100608e5592SLaurent Vivier{ TARGET_NR_clone, "clone" , NULL, print_clone, NULL },
10133189d31Sths#endif
10233189d31Sths#ifdef TARGET_NR_close
10333189d31Sths{ TARGET_NR_close, "close" , "%s(%d)", NULL, NULL },
10433189d31Sths#endif
10533189d31Sths#ifdef TARGET_NR_connect
10633189d31Sths{ TARGET_NR_connect, "connect" , "%s(%d,%#x,%d)", NULL, NULL },
10733189d31Sths#endif
10833189d31Sths#ifdef TARGET_NR_creat
10974d753acSMika Westerberg{ TARGET_NR_creat, "creat" , NULL, print_creat, NULL },
11033189d31Sths#endif
11133189d31Sths#ifdef TARGET_NR_create_module
11233189d31Sths{ TARGET_NR_create_module, "create_module" , NULL, NULL, NULL },
11333189d31Sths#endif
11433189d31Sths#ifdef TARGET_NR_delete_module
11533189d31Sths{ TARGET_NR_delete_module, "delete_module" , NULL, NULL, NULL },
11633189d31Sths#endif
11733189d31Sths#ifdef TARGET_NR_dipc
11833189d31Sths{ TARGET_NR_dipc, "dipc" , NULL, NULL, NULL },
11933189d31Sths#endif
12033189d31Sths#ifdef TARGET_NR_dup
1219cbc0578SHelge Deller{ TARGET_NR_dup, "dup" , "%s(%d)", NULL, NULL },
12233189d31Sths#endif
12333189d31Sths#ifdef TARGET_NR_dup2
1249cbc0578SHelge Deller{ TARGET_NR_dup2, "dup2" , "%s(%d,%d)", NULL, NULL },
12533189d31Sths#endif
12653bdbfdfSAndreas Schwab#ifdef TARGET_NR_dup3
1279cbc0578SHelge Deller{ TARGET_NR_dup3, "dup3" , "%s(%d,%d,%d)", NULL, NULL },
12853bdbfdfSAndreas Schwab#endif
12933189d31Sths#ifdef TARGET_NR_epoll_create
130fd568660SSergei Trofimovich{ TARGET_NR_epoll_create, "epoll_create", "%s(%d)", NULL, NULL },
13133189d31Sths#endif
1320fa82d39SPaul Burton#ifdef TARGET_NR_epoll_create1
133fd568660SSergei Trofimovich{ TARGET_NR_epoll_create1, "epoll_create1", "%s(%d)", NULL, NULL },
1340fa82d39SPaul Burton#endif
13533189d31Sths#ifdef TARGET_NR_epoll_ctl
13633189d31Sths{ TARGET_NR_epoll_ctl, "epoll_ctl" , NULL, NULL, NULL },
13733189d31Sths#endif
13833189d31Sths#ifdef TARGET_NR_epoll_ctl_old
13933189d31Sths{ TARGET_NR_epoll_ctl_old, "epoll_ctl_old" , NULL, NULL, NULL },
14033189d31Sths#endif
141fea55615SAleksandar Markovic#ifdef TARGET_NR_epoll_pwait
142fea55615SAleksandar Markovic{ TARGET_NR_epoll_pwait, "epoll_pwait" , NULL, NULL, NULL },
143fea55615SAleksandar Markovic#endif
14433189d31Sths#ifdef TARGET_NR_epoll_wait
14533189d31Sths{ TARGET_NR_epoll_wait, "epoll_wait" , NULL, NULL, NULL },
14633189d31Sths#endif
14733189d31Sths#ifdef TARGET_NR_epoll_wait_old
14833189d31Sths{ TARGET_NR_epoll_wait_old, "epoll_wait_old" , NULL, NULL, NULL },
14933189d31Sths#endif
150fea55615SAleksandar Markovic#ifdef TARGET_NR_eventfd
1519cbc0578SHelge Deller{ TARGET_NR_eventfd, "eventfd", "%s(%d)", NULL, NULL },
152fea55615SAleksandar Markovic#endif
153fea55615SAleksandar Markovic#ifdef TARGET_NR_eventfd2
1549cbc0578SHelge Deller{ TARGET_NR_eventfd2, "eventfd2" , "%s(%d,%d)", NULL, NULL },
155fea55615SAleksandar Markovic#endif
15633189d31Sths#ifdef TARGET_NR_execv
15774d753acSMika Westerberg{ TARGET_NR_execv, "execv" , NULL, print_execv, NULL },
15833189d31Sths#endif
15933189d31Sths#ifdef TARGET_NR_execve
16033189d31Sths{ TARGET_NR_execve, "execve" , NULL, print_execve, NULL },
16133189d31Sths#endif
162fea55615SAleksandar Markovic#ifdef TARGET_NR_execveat
163fea55615SAleksandar Markovic{ TARGET_NR_execveat, "execveat" , NULL, NULL, NULL },
164fea55615SAleksandar Markovic#endif
16533189d31Sths#ifdef TARGET_NR_exec_with_loader
16633189d31Sths{ TARGET_NR_exec_with_loader, "exec_with_loader" , NULL, NULL, NULL },
16733189d31Sths#endif
16833189d31Sths#ifdef TARGET_NR_exit
16933189d31Sths{ TARGET_NR_exit, "exit" , "%s(%d)\n", NULL, NULL },
17033189d31Sths#endif
17133189d31Sths#ifdef TARGET_NR__exit
17233189d31Sths{ TARGET_NR__exit, "_exit" , "%s(%d)\n", NULL, NULL },
17333189d31Sths#endif
17433189d31Sths#ifdef TARGET_NR_exit_group
17533189d31Sths{ TARGET_NR_exit_group, "exit_group" , "%s(%d)\n", NULL, NULL },
17633189d31Sths#endif
17733189d31Sths#ifdef TARGET_NR_faccessat
17874d753acSMika Westerberg{ TARGET_NR_faccessat, "faccessat" , NULL, print_faccessat, NULL },
17933189d31Sths#endif
18033189d31Sths#ifdef TARGET_NR_fadvise64
18133189d31Sths{ TARGET_NR_fadvise64, "fadvise64" , NULL, NULL, NULL },
18233189d31Sths#endif
18333189d31Sths#ifdef TARGET_NR_fadvise64_64
18433189d31Sths{ TARGET_NR_fadvise64_64, "fadvise64_64" , NULL, NULL, NULL },
18533189d31Sths#endif
186fea55615SAleksandar Markovic#ifdef TARGET_NR_fallocate
187f4d92c5eSFilip Bozuta{ TARGET_NR_fallocate, "fallocate" , NULL, print_fallocate, NULL },
188fea55615SAleksandar Markovic#endif
189fea55615SAleksandar Markovic#ifdef TARGET_NR_fanotify_init
190fea55615SAleksandar Markovic{ TARGET_NR_fanotify_init, "fanotify_init" , NULL, NULL, NULL },
191fea55615SAleksandar Markovic#endif
192fea55615SAleksandar Markovic#ifdef TARGET_NR_fanotify_mark
193fea55615SAleksandar Markovic{ TARGET_NR_fanotify_mark, "fanotify_mark" , NULL, NULL, NULL },
194fea55615SAleksandar Markovic#endif
19533189d31Sths#ifdef TARGET_NR_fchdir
1969cbc0578SHelge Deller{ TARGET_NR_fchdir, "fchdir" , "%s(%d)", NULL, NULL },
19733189d31Sths#endif
19833189d31Sths#ifdef TARGET_NR_fchmod
19933189d31Sths{ TARGET_NR_fchmod, "fchmod" , "%s(%d,%#o)", NULL, NULL },
20033189d31Sths#endif
20133189d31Sths#ifdef TARGET_NR_fchmodat
20274d753acSMika Westerberg{ TARGET_NR_fchmodat, "fchmodat" , NULL, print_fchmodat, NULL },
20333189d31Sths#endif
20433189d31Sths#ifdef TARGET_NR_fchown
20574d753acSMika Westerberg{ TARGET_NR_fchown, "fchown" , "%s(%d,%d,%d)", NULL, NULL },
20633189d31Sths#endif
20733189d31Sths#ifdef TARGET_NR_fchown32
20833189d31Sths{ TARGET_NR_fchown32, "fchown32" , NULL, NULL, NULL },
20933189d31Sths#endif
21033189d31Sths#ifdef TARGET_NR_fchownat
21174d753acSMika Westerberg{ TARGET_NR_fchownat, "fchownat" , NULL, print_fchownat, NULL },
21233189d31Sths#endif
21333189d31Sths#ifdef TARGET_NR_fcntl
21474d753acSMika Westerberg{ TARGET_NR_fcntl, "fcntl" , NULL, print_fcntl, NULL },
21533189d31Sths#endif
21633189d31Sths#ifdef TARGET_NR_fcntl64
21774d753acSMika Westerberg{ TARGET_NR_fcntl64, "fcntl64" , NULL, print_fcntl64, NULL },
21833189d31Sths#endif
21933189d31Sths#ifdef TARGET_NR_fdatasync
220c42569f6SFilip Bozuta{ TARGET_NR_fdatasync, "fdatasync" , "%s(%d)", NULL, NULL },
22133189d31Sths#endif
22233189d31Sths#ifdef TARGET_NR_fgetxattr
2234fc3cddeSFilip Bozuta{ TARGET_NR_fgetxattr, "fgetxattr" , NULL, print_fgetxattr, NULL },
22433189d31Sths#endif
225fea55615SAleksandar Markovic#ifdef TARGET_NR_finit_module
226fea55615SAleksandar Markovic{ TARGET_NR_finit_module, "finit_module" , NULL, NULL, NULL },
227fea55615SAleksandar Markovic#endif
22833189d31Sths#ifdef TARGET_NR_flistxattr
2294fc3cddeSFilip Bozuta{ TARGET_NR_flistxattr, "flistxattr" , NULL, print_flistxattr,
2304fc3cddeSFilip Bozuta                        print_syscall_ret_flistxattr},
23133189d31Sths#endif
23233189d31Sths#ifdef TARGET_NR_flock
23333189d31Sths{ TARGET_NR_flock, "flock" , NULL, NULL, NULL },
23433189d31Sths#endif
23533189d31Sths#ifdef TARGET_NR_fork
23633189d31Sths{ TARGET_NR_fork, "fork" , "%s()", NULL, NULL },
23733189d31Sths#endif
23833189d31Sths#ifdef TARGET_NR_fremovexattr
2394fc3cddeSFilip Bozuta{ TARGET_NR_fremovexattr, "fremovexattr" , NULL, print_fremovexattr, NULL },
24033189d31Sths#endif
24133189d31Sths#ifdef TARGET_NR_fsetxattr
24233189d31Sths{ TARGET_NR_fsetxattr, "fsetxattr" , NULL, NULL, NULL },
24333189d31Sths#endif
24433189d31Sths#ifdef TARGET_NR_fstat
24574d753acSMika Westerberg{ TARGET_NR_fstat, "fstat" , NULL, print_fstat, NULL },
24633189d31Sths#endif
24733189d31Sths#ifdef TARGET_NR_fstat64
24874d753acSMika Westerberg{ TARGET_NR_fstat64, "fstat64" , NULL, print_fstat64, NULL },
24933189d31Sths#endif
25033189d31Sths#ifdef TARGET_NR_fstatfs
25133189d31Sths{ TARGET_NR_fstatfs, "fstatfs" , "%s(%d,%p)", NULL, NULL },
25233189d31Sths#endif
25333189d31Sths#ifdef TARGET_NR_fstatfs64
25433189d31Sths{ TARGET_NR_fstatfs64, "fstatfs64" , "%s(%d,%p)", NULL, NULL },
25533189d31Sths#endif
25633189d31Sths#ifdef TARGET_NR_fsync
257c42569f6SFilip Bozuta{ TARGET_NR_fsync, "fsync" , "%s(%d)", NULL, NULL },
25833189d31Sths#endif
25933189d31Sths#ifdef TARGET_NR_ftime
26033189d31Sths{ TARGET_NR_ftime, "ftime" , NULL, NULL, NULL },
26133189d31Sths#endif
26233189d31Sths#ifdef TARGET_NR_ftruncate
2637c89f343SFilip Bozuta{ TARGET_NR_ftruncate, "ftruncate" , "%s(%d," TARGET_ABI_FMT_ld ")", NULL, NULL },
26433189d31Sths#endif
26533189d31Sths#ifdef TARGET_NR_ftruncate64
2667c89f343SFilip Bozuta{ TARGET_NR_ftruncate64, "ftruncate64" , NULL, print_ftruncate64, NULL },
26733189d31Sths#endif
26833189d31Sths#ifdef TARGET_NR_futex
26974d753acSMika Westerberg{ TARGET_NR_futex, "futex" , NULL, print_futex, NULL },
27033189d31Sths#endif
27133189d31Sths#ifdef TARGET_NR_futimesat
27274d753acSMika Westerberg{ TARGET_NR_futimesat, "futimesat" , NULL, print_futimesat, NULL },
27333189d31Sths#endif
274fea55615SAleksandar Markovic#ifdef TARGET_NR_getcpu
275fea55615SAleksandar Markovic{ TARGET_NR_getcpu, "getcpu" , "%s(%p,%d)", NULL, NULL },
276fea55615SAleksandar Markovic#endif
27733189d31Sths#ifdef TARGET_NR_getcwd
27833189d31Sths{ TARGET_NR_getcwd, "getcwd" , "%s(%p,%d)", NULL, NULL },
27933189d31Sths#endif
28033189d31Sths#ifdef TARGET_NR_getdents
28133189d31Sths{ TARGET_NR_getdents, "getdents" , NULL, NULL, NULL },
28233189d31Sths#endif
28333189d31Sths#ifdef TARGET_NR_getdents64
28433189d31Sths{ TARGET_NR_getdents64, "getdents64" , NULL, NULL, NULL },
28533189d31Sths#endif
28633189d31Sths#ifdef TARGET_NR_getdomainname
28733189d31Sths{ TARGET_NR_getdomainname, "getdomainname" , NULL, NULL, NULL },
28833189d31Sths#endif
28933189d31Sths#ifdef TARGET_NR_getdtablesize
29033189d31Sths{ TARGET_NR_getdtablesize, "getdtablesize" , NULL, NULL, NULL },
29133189d31Sths#endif
29233189d31Sths#ifdef TARGET_NR_getegid
2939cbc0578SHelge Deller{ TARGET_NR_getegid, "getegid" , "%s()", NULL, NULL },
29433189d31Sths#endif
29533189d31Sths#ifdef TARGET_NR_getegid32
29633189d31Sths{ TARGET_NR_getegid32, "getegid32" , NULL, NULL, NULL },
29733189d31Sths#endif
29833189d31Sths#ifdef TARGET_NR_geteuid
29965424cc4SMiloš Stojanović{ TARGET_NR_geteuid, "geteuid" , "%s()", NULL, NULL },
30033189d31Sths#endif
30133189d31Sths#ifdef TARGET_NR_geteuid32
30233189d31Sths{ TARGET_NR_geteuid32, "geteuid32" , NULL, NULL, NULL },
30333189d31Sths#endif
30433189d31Sths#ifdef TARGET_NR_getgid
3059cbc0578SHelge Deller{ TARGET_NR_getgid, "getgid" , "%s()", NULL, NULL },
30633189d31Sths#endif
30733189d31Sths#ifdef TARGET_NR_getgid32
30833189d31Sths{ TARGET_NR_getgid32, "getgid32" , NULL, NULL, NULL },
30933189d31Sths#endif
31033189d31Sths#ifdef TARGET_NR_getgroups
31133189d31Sths{ TARGET_NR_getgroups, "getgroups" , NULL, NULL, NULL },
31233189d31Sths#endif
31333189d31Sths#ifdef TARGET_NR_getgroups32
31433189d31Sths{ TARGET_NR_getgroups32, "getgroups32" , NULL, NULL, NULL },
31533189d31Sths#endif
31633189d31Sths#ifdef TARGET_NR_gethostname
31733189d31Sths{ TARGET_NR_gethostname, "gethostname" , NULL, NULL, NULL },
31833189d31Sths#endif
31933189d31Sths#ifdef TARGET_NR_getitimer
3201a674adfSFilip Bozuta{ TARGET_NR_getitimer, "getitimer" , NULL, print_getitimer,
3211a674adfSFilip Bozuta                       print_syscall_ret_getitimer },
32233189d31Sths#endif
32333189d31Sths#ifdef TARGET_NR_get_kernel_syms
32433189d31Sths{ TARGET_NR_get_kernel_syms, "get_kernel_syms" , NULL, NULL, NULL },
32533189d31Sths#endif
32633189d31Sths#ifdef TARGET_NR_get_mempolicy
32733189d31Sths{ TARGET_NR_get_mempolicy, "get_mempolicy" , NULL, NULL, NULL },
32833189d31Sths#endif
32933189d31Sths#ifdef TARGET_NR_getpagesize
33033189d31Sths{ TARGET_NR_getpagesize, "getpagesize" , NULL, NULL, NULL },
33133189d31Sths#endif
33233189d31Sths#ifdef TARGET_NR_getpeername
33333189d31Sths{ TARGET_NR_getpeername, "getpeername" , NULL, NULL, NULL },
33433189d31Sths#endif
33533189d31Sths#ifdef TARGET_NR_getpgid
3369cbc0578SHelge Deller{ TARGET_NR_getpgid, "getpgid" , "%s(%u)", NULL, NULL },
33733189d31Sths#endif
33833189d31Sths#ifdef TARGET_NR_getpgrp
3399cbc0578SHelge Deller{ TARGET_NR_getpgrp, "getpgrp" , "%s()", NULL, NULL },
34033189d31Sths#endif
34133189d31Sths#ifdef TARGET_NR_getpid
342608e5592SLaurent Vivier{ TARGET_NR_getpid, "getpid" , "%s()", NULL, NULL },
34333189d31Sths#endif
34433189d31Sths#ifdef TARGET_NR_getpmsg
34533189d31Sths{ TARGET_NR_getpmsg, "getpmsg" , NULL, NULL, NULL },
34633189d31Sths#endif
34733189d31Sths#ifdef TARGET_NR_getppid
34865424cc4SMiloš Stojanović{ TARGET_NR_getppid, "getppid" , "%s()", NULL, NULL },
34933189d31Sths#endif
35033189d31Sths#ifdef TARGET_NR_getpriority
35133189d31Sths{ TARGET_NR_getpriority, "getpriority", "%s(%#x,%#x)", NULL, NULL },
35233189d31Sths#endif
353fea55615SAleksandar Markovic#ifdef TARGET_NR_getrandom
354fea55615SAleksandar Markovic{ TARGET_NR_getrandom, "getrandom", NULL, NULL, NULL },
355fea55615SAleksandar Markovic#endif
35633189d31Sths#ifdef TARGET_NR_getresgid
35733189d31Sths{ TARGET_NR_getresgid, "getresgid" , NULL, NULL, NULL },
35833189d31Sths#endif
35933189d31Sths#ifdef TARGET_NR_getresgid32
36033189d31Sths{ TARGET_NR_getresgid32, "getresgid32" , NULL, NULL, NULL },
36133189d31Sths#endif
36233189d31Sths#ifdef TARGET_NR_getresuid
36333189d31Sths{ TARGET_NR_getresuid, "getresuid" , NULL, NULL, NULL },
36433189d31Sths#endif
36533189d31Sths#ifdef TARGET_NR_getresuid32
36633189d31Sths{ TARGET_NR_getresuid32, "getresuid32" , NULL, NULL, NULL },
36733189d31Sths#endif
36833189d31Sths#ifdef TARGET_NR_getrlimit
36933189d31Sths{ TARGET_NR_getrlimit, "getrlimit" , NULL, NULL, NULL },
37033189d31Sths#endif
37133189d31Sths#ifdef TARGET_NR_get_robust_list
37233189d31Sths{ TARGET_NR_get_robust_list, "get_robust_list" , NULL, NULL, NULL },
37333189d31Sths#endif
37433189d31Sths#ifdef TARGET_NR_getrusage
37533189d31Sths{ TARGET_NR_getrusage, "getrusage" , NULL, NULL, NULL },
37633189d31Sths#endif
37733189d31Sths#ifdef TARGET_NR_getsid
3787c89f343SFilip Bozuta{ TARGET_NR_getsid, "getsid" , "%s(%d)", NULL, NULL },
37933189d31Sths#endif
38033189d31Sths#ifdef TARGET_NR_getsockname
38133189d31Sths{ TARGET_NR_getsockname, "getsockname" , NULL, NULL, NULL },
38233189d31Sths#endif
38333189d31Sths#ifdef TARGET_NR_getsockopt
38433189d31Sths{ TARGET_NR_getsockopt, "getsockopt" , NULL, NULL, NULL },
38533189d31Sths#endif
38633189d31Sths#ifdef TARGET_NR_get_thread_area
387dc3e83d5SRichard Henderson#if defined(TARGET_I386) && defined(TARGET_ABI32)
3889a6309e7SLaurent Vivier{ TARGET_NR_get_thread_area, "get_thread_area", "%s(0x"TARGET_ABI_FMT_lx")",
3899a6309e7SLaurent Vivier  NULL, NULL },
390dc3e83d5SRichard Henderson#elif defined(TARGET_M68K)
391dc3e83d5SRichard Henderson{ TARGET_NR_get_thread_area, "get_thread_area" , "%s()",
392dc3e83d5SRichard Henderson  NULL, print_syscall_ret_addr },
393dc3e83d5SRichard Henderson#endif
39433189d31Sths#endif
39533189d31Sths#ifdef TARGET_NR_gettid
39665424cc4SMiloš Stojanović{ TARGET_NR_gettid, "gettid" , "%s()", NULL, NULL },
39733189d31Sths#endif
39833189d31Sths#ifdef TARGET_NR_gettimeofday
3991a674adfSFilip Bozuta{ TARGET_NR_gettimeofday, "gettimeofday" , NULL, print_gettimeofday,
4001a674adfSFilip Bozuta                          print_syscall_ret_gettimeofday },
40133189d31Sths#endif
40233189d31Sths#ifdef TARGET_NR_getuid
40365424cc4SMiloš Stojanović{ TARGET_NR_getuid, "getuid" , "%s()", NULL, NULL },
40433189d31Sths#endif
40533189d31Sths#ifdef TARGET_NR_getuid32
40633189d31Sths{ TARGET_NR_getuid32, "getuid32" , NULL, NULL, NULL },
40733189d31Sths#endif
40833189d31Sths#ifdef TARGET_NR_getxattr
4094fc3cddeSFilip Bozuta{ TARGET_NR_getxattr, "getxattr" , NULL, print_getxattr, NULL },
41033189d31Sths#endif
41133189d31Sths#ifdef TARGET_NR_getxgid
41233189d31Sths{ TARGET_NR_getxgid, "getxgid" , NULL, NULL, NULL },
41333189d31Sths#endif
41433189d31Sths#ifdef TARGET_NR_getxpid
41533189d31Sths{ TARGET_NR_getxpid, "getxpid" , NULL, NULL, NULL },
41633189d31Sths#endif
41733189d31Sths#ifdef TARGET_NR_getxuid
41833189d31Sths{ TARGET_NR_getxuid, "getxuid" , NULL, NULL, NULL },
41933189d31Sths#endif
42033189d31Sths#ifdef TARGET_NR_gtty
42133189d31Sths{ TARGET_NR_gtty, "gtty" , NULL, NULL, NULL },
42233189d31Sths#endif
42333189d31Sths#ifdef TARGET_NR_idle
42433189d31Sths{ TARGET_NR_idle, "idle" , NULL, NULL, NULL },
42533189d31Sths#endif
42633189d31Sths#ifdef TARGET_NR_init_module
42733189d31Sths{ TARGET_NR_init_module, "init_module" , NULL, NULL, NULL },
42833189d31Sths#endif
42933189d31Sths#ifdef TARGET_NR_inotify_add_watch
43033189d31Sths{ TARGET_NR_inotify_add_watch, "inotify_add_watch" , NULL, NULL, NULL },
43133189d31Sths#endif
43233189d31Sths#ifdef TARGET_NR_inotify_init
43333189d31Sths{ TARGET_NR_inotify_init, "inotify_init" , NULL, NULL, NULL },
43433189d31Sths#endif
435fea55615SAleksandar Markovic#ifdef TARGET_NR_inotify_init1
436fea55615SAleksandar Markovic{ TARGET_NR_inotify_init1, "inotify_init1" , NULL, NULL, NULL },
437fea55615SAleksandar Markovic#endif
43833189d31Sths#ifdef TARGET_NR_inotify_rm_watch
43933189d31Sths{ TARGET_NR_inotify_rm_watch, "inotify_rm_watch" , NULL, NULL, NULL },
44033189d31Sths#endif
44133189d31Sths#ifdef TARGET_NR_io_cancel
44233189d31Sths{ TARGET_NR_io_cancel, "io_cancel" , NULL, NULL, NULL },
44333189d31Sths#endif
44433189d31Sths#ifdef TARGET_NR_ioctl
44579482e59SFilip Bozuta{ TARGET_NR_ioctl, "ioctl" , NULL, print_ioctl,
44679482e59SFilip Bozuta                   print_syscall_ret_ioctl},
44733189d31Sths#endif
44833189d31Sths#ifdef TARGET_NR_io_destroy
44933189d31Sths{ TARGET_NR_io_destroy, "io_destroy" , NULL, NULL, NULL },
45033189d31Sths#endif
45133189d31Sths#ifdef TARGET_NR_io_getevents
45233189d31Sths{ TARGET_NR_io_getevents, "io_getevents" , NULL, NULL, NULL },
45333189d31Sths#endif
45433189d31Sths#ifdef TARGET_NR_ioperm
45533189d31Sths{ TARGET_NR_ioperm, "ioperm" , NULL, NULL, NULL },
45633189d31Sths#endif
45733189d31Sths#ifdef TARGET_NR_iopl
45833189d31Sths{ TARGET_NR_iopl, "iopl" , NULL, NULL, NULL },
45933189d31Sths#endif
46033189d31Sths#ifdef TARGET_NR_ioprio_get
46133189d31Sths{ TARGET_NR_ioprio_get, "ioprio_get" , NULL, NULL, NULL },
46233189d31Sths#endif
46333189d31Sths#ifdef TARGET_NR_ioprio_set
46433189d31Sths{ TARGET_NR_ioprio_set, "ioprio_set" , NULL, NULL, NULL },
46533189d31Sths#endif
46633189d31Sths#ifdef TARGET_NR_io_setup
46733189d31Sths{ TARGET_NR_io_setup, "io_setup" , NULL, NULL, NULL },
46833189d31Sths#endif
46933189d31Sths#ifdef TARGET_NR_io_submit
47033189d31Sths{ TARGET_NR_io_submit, "io_submit" , NULL, NULL, NULL },
47133189d31Sths#endif
47233189d31Sths#ifdef TARGET_NR_ipc
47333189d31Sths{ TARGET_NR_ipc, "ipc" , NULL, print_ipc, NULL },
47433189d31Sths#endif
475fea55615SAleksandar Markovic#ifdef TARGET_NR_kcmp
476fea55615SAleksandar Markovic{ TARGET_NR_kcmp, "kcmp" , NULL, NULL, NULL },
477fea55615SAleksandar Markovic#endif
47833189d31Sths#ifdef TARGET_NR_kexec_load
47933189d31Sths{ TARGET_NR_kexec_load, "kexec_load" , NULL, NULL, NULL },
48033189d31Sths#endif
48133189d31Sths#ifdef TARGET_NR_keyctl
48233189d31Sths{ TARGET_NR_keyctl, "keyctl" , NULL, NULL, NULL },
48333189d31Sths#endif
48433189d31Sths#ifdef TARGET_NR_kill
485608e5592SLaurent Vivier{ TARGET_NR_kill, "kill", NULL, print_kill, NULL },
48633189d31Sths#endif
48733189d31Sths#ifdef TARGET_NR_lchown
4885844f4bcSFilip Bozuta{ TARGET_NR_lchown, "lchown" , NULL, print_lchown, NULL },
48933189d31Sths#endif
49033189d31Sths#ifdef TARGET_NR_lchown32
49133189d31Sths{ TARGET_NR_lchown32, "lchown32" , NULL, NULL, NULL },
49233189d31Sths#endif
49333189d31Sths#ifdef TARGET_NR_lgetxattr
4944fc3cddeSFilip Bozuta{ TARGET_NR_lgetxattr, "lgetxattr" , NULL, print_lgetxattr, NULL },
49533189d31Sths#endif
49633189d31Sths#ifdef TARGET_NR_link
49774d753acSMika Westerberg{ TARGET_NR_link, "link" , NULL, print_link, NULL },
49833189d31Sths#endif
49933189d31Sths#ifdef TARGET_NR_linkat
50074d753acSMika Westerberg{ TARGET_NR_linkat, "linkat" , NULL, print_linkat, NULL },
50133189d31Sths#endif
50233189d31Sths#ifdef TARGET_NR_Linux
50333189d31Sths{ TARGET_NR_Linux, "Linux" , NULL, NULL, NULL },
50433189d31Sths#endif
50533189d31Sths#ifdef TARGET_NR_listen
506c42569f6SFilip Bozuta{ TARGET_NR_listen, "listen" , "%s(%d,%d)", NULL, NULL },
50733189d31Sths#endif
50833189d31Sths#ifdef TARGET_NR_listxattr
5094fc3cddeSFilip Bozuta{ TARGET_NR_listxattr, "listxattr" , NULL, print_listxattr,
5104fc3cddeSFilip Bozuta                       print_syscall_ret_listxattr},
51133189d31Sths#endif
51233189d31Sths#ifdef TARGET_NR_llistxattr
5134fc3cddeSFilip Bozuta{ TARGET_NR_llistxattr, "llistxattr" , NULL, print_llistxattr,
5144fc3cddeSFilip Bozuta                        print_syscall_ret_llistxattr},
51533189d31Sths#endif
51633189d31Sths#ifdef TARGET_NR__llseek
517608e5592SLaurent Vivier{ TARGET_NR__llseek, "_llseek" , NULL, print__llseek, NULL },
51833189d31Sths#endif
5199f771ad8SKito Cheng#ifdef TARGET_NR_llseek
5209f771ad8SKito Cheng{ TARGET_NR_llseek, "llseek" , NULL, print_llseek, NULL },
5219f771ad8SKito Cheng#endif
52233189d31Sths#ifdef TARGET_NR_lock
52333189d31Sths{ TARGET_NR_lock, "lock" , NULL, NULL, NULL },
52433189d31Sths#endif
52533189d31Sths#ifdef TARGET_NR_lookup_dcookie
52633189d31Sths{ TARGET_NR_lookup_dcookie, "lookup_dcookie" , NULL, NULL, NULL },
52733189d31Sths#endif
52833189d31Sths#ifdef TARGET_NR_lremovexattr
5294fc3cddeSFilip Bozuta{ TARGET_NR_lremovexattr, "lremovexattr" , NULL, print_lremovexattr, NULL },
53033189d31Sths#endif
53133189d31Sths#ifdef TARGET_NR_lseek
532af861deaSFilip Bozuta{ TARGET_NR_lseek, "lseek" , NULL, print_lseek, NULL },
53333189d31Sths#endif
53433189d31Sths#ifdef TARGET_NR_lsetxattr
53533189d31Sths{ TARGET_NR_lsetxattr, "lsetxattr" , NULL, NULL, NULL },
53633189d31Sths#endif
53733189d31Sths#ifdef TARGET_NR_lstat
53874d753acSMika Westerberg{ TARGET_NR_lstat, "lstat" , NULL, print_lstat, NULL },
53933189d31Sths#endif
54033189d31Sths#ifdef TARGET_NR_lstat64
54174d753acSMika Westerberg{ TARGET_NR_lstat64, "lstat64" , NULL, print_lstat64, NULL },
54233189d31Sths#endif
54333189d31Sths#ifdef TARGET_NR_madvise
54433189d31Sths{ TARGET_NR_madvise, "madvise" , NULL, NULL, NULL },
54533189d31Sths#endif
54633189d31Sths#ifdef TARGET_NR_madvise1
54733189d31Sths{ TARGET_NR_madvise1, "madvise1" , NULL, NULL, NULL },
54833189d31Sths#endif
54933189d31Sths#ifdef TARGET_NR_mbind
55033189d31Sths{ TARGET_NR_mbind, "mbind" , NULL, NULL, NULL },
55133189d31Sths#endif
552fea55615SAleksandar Markovic#ifdef TARGET_NR_membarrier
553fea55615SAleksandar Markovic{ TARGET_NR_membarrier, "membarrier" , NULL, NULL, NULL },
554fea55615SAleksandar Markovic#endif
555fea55615SAleksandar Markovic#ifdef TARGET_NR_memfd_create
556fea55615SAleksandar Markovic{ TARGET_NR_memfd_create, "memfd_create" , NULL, NULL, NULL },
557fea55615SAleksandar Markovic#endif
55833189d31Sths#ifdef TARGET_NR_memory_ordering
55933189d31Sths{ TARGET_NR_memory_ordering, "memory_ordering" , NULL, NULL, NULL },
56033189d31Sths#endif
56133189d31Sths#ifdef TARGET_NR_migrate_pages
56233189d31Sths{ TARGET_NR_migrate_pages, "migrate_pages" , NULL, NULL, NULL },
56333189d31Sths#endif
56433189d31Sths#ifdef TARGET_NR_mincore
56533189d31Sths{ TARGET_NR_mincore, "mincore" , NULL, NULL, NULL },
56633189d31Sths#endif
56733189d31Sths#ifdef TARGET_NR_mkdir
56874d753acSMika Westerberg{ TARGET_NR_mkdir, "mkdir" , NULL, print_mkdir, NULL },
56933189d31Sths#endif
57033189d31Sths#ifdef TARGET_NR_mkdirat
57174d753acSMika Westerberg{ TARGET_NR_mkdirat, "mkdirat" , NULL, print_mkdirat, NULL },
57233189d31Sths#endif
5734de596cbSLaurent Vivier#ifdef TARGET_NR_rmdir
5744de596cbSLaurent Vivier{ TARGET_NR_rmdir, "rmdir" , NULL, print_rmdir, NULL },
5754de596cbSLaurent Vivier#endif
57633189d31Sths#ifdef TARGET_NR_mknod
57774d753acSMika Westerberg{ TARGET_NR_mknod, "mknod" , NULL, print_mknod, NULL },
57833189d31Sths#endif
57933189d31Sths#ifdef TARGET_NR_mknodat
58074d753acSMika Westerberg{ TARGET_NR_mknodat, "mknodat" , NULL, print_mknodat, NULL },
58133189d31Sths#endif
58233189d31Sths#ifdef TARGET_NR_mlock
58302e5d7d7SFilip Bozuta{ TARGET_NR_mlock, "mlock" , "%s(%p," TARGET_FMT_lu ")", NULL, NULL },
58433189d31Sths#endif
585fea55615SAleksandar Markovic#ifdef TARGET_NR_mlock2
586fea55615SAleksandar Markovic{ TARGET_NR_mlock2, "mlock2" , NULL, NULL, NULL },
587fea55615SAleksandar Markovic#endif
58833189d31Sths#ifdef TARGET_NR_mlockall
58902e5d7d7SFilip Bozuta{ TARGET_NR_mlockall, "mlockall" , NULL, print_mlockall, NULL },
59033189d31Sths#endif
59133189d31Sths#ifdef TARGET_NR_mmap
59274d753acSMika Westerberg{ TARGET_NR_mmap, "mmap" , NULL, print_mmap, print_syscall_ret_addr },
59333189d31Sths#endif
59433189d31Sths#ifdef TARGET_NR_mmap2
59574d753acSMika Westerberg{ TARGET_NR_mmap2, "mmap2" , NULL, print_mmap2, print_syscall_ret_addr },
59633189d31Sths#endif
59733189d31Sths#ifdef TARGET_NR_modify_ldt
59833189d31Sths{ TARGET_NR_modify_ldt, "modify_ldt" , NULL, NULL, NULL },
59933189d31Sths#endif
60033189d31Sths#ifdef TARGET_NR_mount
60174d753acSMika Westerberg{ TARGET_NR_mount, "mount" , NULL, print_mount, NULL },
60233189d31Sths#endif
60333189d31Sths#ifdef TARGET_NR_move_pages
60433189d31Sths{ TARGET_NR_move_pages, "move_pages" , NULL, NULL, NULL },
60533189d31Sths#endif
60633189d31Sths#ifdef TARGET_NR_mprotect
60774d753acSMika Westerberg{ TARGET_NR_mprotect, "mprotect" , NULL, print_mprotect, NULL },
60833189d31Sths#endif
60933189d31Sths#ifdef TARGET_NR_mpx
61033189d31Sths{ TARGET_NR_mpx, "mpx" , NULL, NULL, NULL },
61133189d31Sths#endif
61233189d31Sths#ifdef TARGET_NR_mq_getsetattr
61324e1003aSaurel32{ TARGET_NR_mq_getsetattr, "mq_getsetattr" , "%s(%d,%p,%p)", NULL, NULL },
61433189d31Sths#endif
61533189d31Sths#ifdef TARGET_NR_mq_notify
61624e1003aSaurel32{ TARGET_NR_mq_notify, "mq_notify" , "%s(%d,%p)", NULL, NULL },
61733189d31Sths#endif
61833189d31Sths#ifdef TARGET_NR_mq_open
61974d753acSMika Westerberg{ TARGET_NR_mq_open, "mq_open" , NULL, print_mq_open, NULL },
62033189d31Sths#endif
62133189d31Sths#ifdef TARGET_NR_mq_timedreceive
62224e1003aSaurel32{ TARGET_NR_mq_timedreceive, "mq_timedreceive" , "%s(%d,%p,%d,%u,%p)", NULL, NULL },
62333189d31Sths#endif
62433189d31Sths#ifdef TARGET_NR_mq_timedsend
62524e1003aSaurel32{ TARGET_NR_mq_timedsend, "mq_timedsend" , "%s(%d,%p,%d,%u,%p)", NULL, NULL },
62633189d31Sths#endif
62733189d31Sths#ifdef TARGET_NR_mq_unlink
62874d753acSMika Westerberg{ TARGET_NR_mq_unlink, "mq_unlink" , NULL, print_mq_unlink, NULL },
62933189d31Sths#endif
63033189d31Sths#ifdef TARGET_NR_mremap
63133189d31Sths{ TARGET_NR_mremap, "mremap" , NULL, NULL, NULL },
63233189d31Sths#endif
63333189d31Sths#ifdef TARGET_NR_msgctl
63433189d31Sths{ TARGET_NR_msgctl, "msgctl" , NULL, NULL, NULL },
63533189d31Sths#endif
63633189d31Sths#ifdef TARGET_NR_msgget
63733189d31Sths{ TARGET_NR_msgget, "msgget" , NULL, NULL, NULL },
63833189d31Sths#endif
63933189d31Sths#ifdef TARGET_NR_msgrcv
64033189d31Sths{ TARGET_NR_msgrcv, "msgrcv" , NULL, NULL, NULL },
64133189d31Sths#endif
64233189d31Sths#ifdef TARGET_NR_msgsnd
64333189d31Sths{ TARGET_NR_msgsnd, "msgsnd" , NULL, NULL, NULL },
64433189d31Sths#endif
64533189d31Sths#ifdef TARGET_NR_msync
64633189d31Sths{ TARGET_NR_msync, "msync" , NULL, NULL, NULL },
64733189d31Sths#endif
64833189d31Sths#ifdef TARGET_NR_multiplexer
64933189d31Sths{ TARGET_NR_multiplexer, "multiplexer" , NULL, NULL, NULL },
65033189d31Sths#endif
65133189d31Sths#ifdef TARGET_NR_munlock
65202e5d7d7SFilip Bozuta{ TARGET_NR_munlock, "munlock" , "%s(%p," TARGET_FMT_lu ")", NULL, NULL },
65333189d31Sths#endif
65433189d31Sths#ifdef TARGET_NR_munlockall
65502e5d7d7SFilip Bozuta{ TARGET_NR_munlockall, "munlockall" , "%s()", NULL, NULL },
65633189d31Sths#endif
65733189d31Sths#ifdef TARGET_NR_munmap
65874d753acSMika Westerberg{ TARGET_NR_munmap, "munmap" , NULL, print_munmap, NULL },
65933189d31Sths#endif
660fea55615SAleksandar Markovic#ifdef TARGET_NR_name_to_handle_at
661fea55615SAleksandar Markovic{ TARGET_NR_name_to_handle_at, "name_to_handle_at" , NULL, NULL, NULL },
662fea55615SAleksandar Markovic#endif
66333189d31Sths#ifdef TARGET_NR_nanosleep
66433189d31Sths{ TARGET_NR_nanosleep, "nanosleep" , NULL, NULL, NULL },
66533189d31Sths#endif
66633189d31Sths#ifdef TARGET_NR_fstatat64
66774d753acSMika Westerberg{ TARGET_NR_fstatat64, "fstatat64" , NULL, print_fstatat64, NULL },
66833189d31Sths#endif
66933189d31Sths#ifdef TARGET_NR_newfstatat
67074d753acSMika Westerberg{ TARGET_NR_newfstatat, "newfstatat" , NULL, print_newfstatat, NULL },
67133189d31Sths#endif
67233189d31Sths#ifdef TARGET_NR__newselect
67333189d31Sths{ TARGET_NR__newselect, "_newselect" , NULL, print_newselect, print_syscall_ret_newselect },
67433189d31Sths#endif
67533189d31Sths#ifdef TARGET_NR_nfsservctl
67633189d31Sths{ TARGET_NR_nfsservctl, "nfsservctl" , NULL, NULL, NULL },
67733189d31Sths#endif
67833189d31Sths#ifdef TARGET_NR_nice
67933189d31Sths{ TARGET_NR_nice, "nice" , NULL, NULL, NULL },
68033189d31Sths#endif
68133189d31Sths#ifdef TARGET_NR_old_adjtimex
68233189d31Sths{ TARGET_NR_old_adjtimex, "old_adjtimex" , NULL, NULL, NULL },
68333189d31Sths#endif
68433189d31Sths#ifdef TARGET_NR_oldfstat
68533189d31Sths{ TARGET_NR_oldfstat, "oldfstat" , NULL, NULL, NULL },
68633189d31Sths#endif
68733189d31Sths#ifdef TARGET_NR_oldlstat
68833189d31Sths{ TARGET_NR_oldlstat, "oldlstat" , NULL, NULL, NULL },
68933189d31Sths#endif
69033189d31Sths#ifdef TARGET_NR_oldolduname
69133189d31Sths{ TARGET_NR_oldolduname, "oldolduname" , NULL, NULL, NULL },
69233189d31Sths#endif
69333189d31Sths#ifdef TARGET_NR_oldstat
69433189d31Sths{ TARGET_NR_oldstat, "oldstat" , NULL, NULL, NULL },
69533189d31Sths#endif
69633189d31Sths#ifdef TARGET_NR_olduname
69733189d31Sths{ TARGET_NR_olduname, "olduname" , NULL, NULL, NULL },
69833189d31Sths#endif
69933189d31Sths#ifdef TARGET_NR_open
70074d753acSMika Westerberg{ TARGET_NR_open, "open" , NULL, print_open, NULL },
70133189d31Sths#endif
70233189d31Sths#ifdef TARGET_NR_openat
70374d753acSMika Westerberg{ TARGET_NR_openat, "openat" , NULL, print_openat, NULL },
70433189d31Sths#endif
70533189d31Sths#ifdef TARGET_NR_osf_adjtime
70633189d31Sths{ TARGET_NR_osf_adjtime, "osf_adjtime" , NULL, NULL, NULL },
70733189d31Sths#endif
70833189d31Sths#ifdef TARGET_NR_osf_afs_syscall
70933189d31Sths{ TARGET_NR_osf_afs_syscall, "osf_afs_syscall" , NULL, NULL, NULL },
71033189d31Sths#endif
71133189d31Sths#ifdef TARGET_NR_osf_alt_plock
71233189d31Sths{ TARGET_NR_osf_alt_plock, "osf_alt_plock" , NULL, NULL, NULL },
71333189d31Sths#endif
71433189d31Sths#ifdef TARGET_NR_osf_alt_setsid
71533189d31Sths{ TARGET_NR_osf_alt_setsid, "osf_alt_setsid" , NULL, NULL, NULL },
71633189d31Sths#endif
71733189d31Sths#ifdef TARGET_NR_osf_alt_sigpending
71833189d31Sths{ TARGET_NR_osf_alt_sigpending, "osf_alt_sigpending" , NULL, NULL, NULL },
71933189d31Sths#endif
72033189d31Sths#ifdef TARGET_NR_osf_asynch_daemon
72133189d31Sths{ TARGET_NR_osf_asynch_daemon, "osf_asynch_daemon" , NULL, NULL, NULL },
72233189d31Sths#endif
72333189d31Sths#ifdef TARGET_NR_osf_audcntl
72433189d31Sths{ TARGET_NR_osf_audcntl, "osf_audcntl" , NULL, NULL, NULL },
72533189d31Sths#endif
72633189d31Sths#ifdef TARGET_NR_osf_audgen
72733189d31Sths{ TARGET_NR_osf_audgen, "osf_audgen" , NULL, NULL, NULL },
72833189d31Sths#endif
72933189d31Sths#ifdef TARGET_NR_osf_chflags
73033189d31Sths{ TARGET_NR_osf_chflags, "osf_chflags" , NULL, NULL, NULL },
73133189d31Sths#endif
73233189d31Sths#ifdef TARGET_NR_osf_execve
73333189d31Sths{ TARGET_NR_osf_execve, "osf_execve" , NULL, NULL, NULL },
73433189d31Sths#endif
73533189d31Sths#ifdef TARGET_NR_osf_exportfs
73633189d31Sths{ TARGET_NR_osf_exportfs, "osf_exportfs" , NULL, NULL, NULL },
73733189d31Sths#endif
73833189d31Sths#ifdef TARGET_NR_osf_fchflags
73933189d31Sths{ TARGET_NR_osf_fchflags, "osf_fchflags" , NULL, NULL, NULL },
74033189d31Sths#endif
74133189d31Sths#ifdef TARGET_NR_osf_fdatasync
74233189d31Sths{ TARGET_NR_osf_fdatasync, "osf_fdatasync" , NULL, NULL, NULL },
74333189d31Sths#endif
74433189d31Sths#ifdef TARGET_NR_osf_fpathconf
74533189d31Sths{ TARGET_NR_osf_fpathconf, "osf_fpathconf" , NULL, NULL, NULL },
74633189d31Sths#endif
74733189d31Sths#ifdef TARGET_NR_osf_fstatfs
74833189d31Sths{ TARGET_NR_osf_fstatfs, "osf_fstatfs" , NULL, NULL, NULL },
74933189d31Sths#endif
75033189d31Sths#ifdef TARGET_NR_osf_fuser
75133189d31Sths{ TARGET_NR_osf_fuser, "osf_fuser" , NULL, NULL, NULL },
75233189d31Sths#endif
75333189d31Sths#ifdef TARGET_NR_osf_getaddressconf
75433189d31Sths{ TARGET_NR_osf_getaddressconf, "osf_getaddressconf" , NULL, NULL, NULL },
75533189d31Sths#endif
75633189d31Sths#ifdef TARGET_NR_osf_getdirentries
75733189d31Sths{ TARGET_NR_osf_getdirentries, "osf_getdirentries" , NULL, NULL, NULL },
75833189d31Sths#endif
75933189d31Sths#ifdef TARGET_NR_osf_getdomainname
76033189d31Sths{ TARGET_NR_osf_getdomainname, "osf_getdomainname" , NULL, NULL, NULL },
76133189d31Sths#endif
76233189d31Sths#ifdef TARGET_NR_osf_getfh
76333189d31Sths{ TARGET_NR_osf_getfh, "osf_getfh" , NULL, NULL, NULL },
76433189d31Sths#endif
76533189d31Sths#ifdef TARGET_NR_osf_getfsstat
76633189d31Sths{ TARGET_NR_osf_getfsstat, "osf_getfsstat" , NULL, NULL, NULL },
76733189d31Sths#endif
76833189d31Sths#ifdef TARGET_NR_osf_gethostid
76933189d31Sths{ TARGET_NR_osf_gethostid, "osf_gethostid" , NULL, NULL, NULL },
77033189d31Sths#endif
77133189d31Sths#ifdef TARGET_NR_osf_getitimer
77233189d31Sths{ TARGET_NR_osf_getitimer, "osf_getitimer" , NULL, NULL, NULL },
77333189d31Sths#endif
77433189d31Sths#ifdef TARGET_NR_osf_getlogin
77533189d31Sths{ TARGET_NR_osf_getlogin, "osf_getlogin" , NULL, NULL, NULL },
77633189d31Sths#endif
77733189d31Sths#ifdef TARGET_NR_osf_getmnt
77833189d31Sths{ TARGET_NR_osf_getmnt, "osf_getmnt" , NULL, NULL, NULL },
77933189d31Sths#endif
78033189d31Sths#ifdef TARGET_NR_osf_getrusage
78133189d31Sths{ TARGET_NR_osf_getrusage, "osf_getrusage" , NULL, NULL, NULL },
78233189d31Sths#endif
78333189d31Sths#ifdef TARGET_NR_osf_getsysinfo
78433189d31Sths{ TARGET_NR_osf_getsysinfo, "osf_getsysinfo" , NULL, NULL, NULL },
78533189d31Sths#endif
78633189d31Sths#ifdef TARGET_NR_osf_gettimeofday
78733189d31Sths{ TARGET_NR_osf_gettimeofday, "osf_gettimeofday" , NULL, NULL, NULL },
78833189d31Sths#endif
78933189d31Sths#ifdef TARGET_NR_osf_kloadcall
79033189d31Sths{ TARGET_NR_osf_kloadcall, "osf_kloadcall" , NULL, NULL, NULL },
79133189d31Sths#endif
79233189d31Sths#ifdef TARGET_NR_osf_kmodcall
79333189d31Sths{ TARGET_NR_osf_kmodcall, "osf_kmodcall" , NULL, NULL, NULL },
79433189d31Sths#endif
79533189d31Sths#ifdef TARGET_NR_osf_memcntl
79633189d31Sths{ TARGET_NR_osf_memcntl, "osf_memcntl" , NULL, NULL, NULL },
79733189d31Sths#endif
79833189d31Sths#ifdef TARGET_NR_osf_mincore
79933189d31Sths{ TARGET_NR_osf_mincore, "osf_mincore" , NULL, NULL, NULL },
80033189d31Sths#endif
80133189d31Sths#ifdef TARGET_NR_osf_mount
80233189d31Sths{ TARGET_NR_osf_mount, "osf_mount" , NULL, NULL, NULL },
80333189d31Sths#endif
80433189d31Sths#ifdef TARGET_NR_osf_mremap
80533189d31Sths{ TARGET_NR_osf_mremap, "osf_mremap" , NULL, NULL, NULL },
80633189d31Sths#endif
80733189d31Sths#ifdef TARGET_NR_osf_msfs_syscall
80833189d31Sths{ TARGET_NR_osf_msfs_syscall, "osf_msfs_syscall" , NULL, NULL, NULL },
80933189d31Sths#endif
81033189d31Sths#ifdef TARGET_NR_osf_msleep
81133189d31Sths{ TARGET_NR_osf_msleep, "osf_msleep" , NULL, NULL, NULL },
81233189d31Sths#endif
81333189d31Sths#ifdef TARGET_NR_osf_mvalid
81433189d31Sths{ TARGET_NR_osf_mvalid, "osf_mvalid" , NULL, NULL, NULL },
81533189d31Sths#endif
81633189d31Sths#ifdef TARGET_NR_osf_mwakeup
81733189d31Sths{ TARGET_NR_osf_mwakeup, "osf_mwakeup" , NULL, NULL, NULL },
81833189d31Sths#endif
81933189d31Sths#ifdef TARGET_NR_osf_naccept
82033189d31Sths{ TARGET_NR_osf_naccept, "osf_naccept" , NULL, NULL, NULL },
82133189d31Sths#endif
82233189d31Sths#ifdef TARGET_NR_osf_nfssvc
82333189d31Sths{ TARGET_NR_osf_nfssvc, "osf_nfssvc" , NULL, NULL, NULL },
82433189d31Sths#endif
82533189d31Sths#ifdef TARGET_NR_osf_ngetpeername
82633189d31Sths{ TARGET_NR_osf_ngetpeername, "osf_ngetpeername" , NULL, NULL, NULL },
82733189d31Sths#endif
82833189d31Sths#ifdef TARGET_NR_osf_ngetsockname
82933189d31Sths{ TARGET_NR_osf_ngetsockname, "osf_ngetsockname" , NULL, NULL, NULL },
83033189d31Sths#endif
83133189d31Sths#ifdef TARGET_NR_osf_nrecvfrom
83233189d31Sths{ TARGET_NR_osf_nrecvfrom, "osf_nrecvfrom" , NULL, NULL, NULL },
83333189d31Sths#endif
83433189d31Sths#ifdef TARGET_NR_osf_nrecvmsg
83533189d31Sths{ TARGET_NR_osf_nrecvmsg, "osf_nrecvmsg" , NULL, NULL, NULL },
83633189d31Sths#endif
83733189d31Sths#ifdef TARGET_NR_osf_nsendmsg
83833189d31Sths{ TARGET_NR_osf_nsendmsg, "osf_nsendmsg" , NULL, NULL, NULL },
83933189d31Sths#endif
84033189d31Sths#ifdef TARGET_NR_osf_ntp_adjtime
84133189d31Sths{ TARGET_NR_osf_ntp_adjtime, "osf_ntp_adjtime" , NULL, NULL, NULL },
84233189d31Sths#endif
84333189d31Sths#ifdef TARGET_NR_osf_ntp_gettime
84433189d31Sths{ TARGET_NR_osf_ntp_gettime, "osf_ntp_gettime" , NULL, NULL, NULL },
84533189d31Sths#endif
84633189d31Sths#ifdef TARGET_NR_osf_old_creat
84733189d31Sths{ TARGET_NR_osf_old_creat, "osf_old_creat" , NULL, NULL, NULL },
84833189d31Sths#endif
84933189d31Sths#ifdef TARGET_NR_osf_old_fstat
85033189d31Sths{ TARGET_NR_osf_old_fstat, "osf_old_fstat" , NULL, NULL, NULL },
85133189d31Sths#endif
85233189d31Sths#ifdef TARGET_NR_osf_old_getpgrp
85333189d31Sths{ TARGET_NR_osf_old_getpgrp, "osf_old_getpgrp" , NULL, NULL, NULL },
85433189d31Sths#endif
85533189d31Sths#ifdef TARGET_NR_osf_old_killpg
85633189d31Sths{ TARGET_NR_osf_old_killpg, "osf_old_killpg" , NULL, NULL, NULL },
85733189d31Sths#endif
85833189d31Sths#ifdef TARGET_NR_osf_old_lstat
85933189d31Sths{ TARGET_NR_osf_old_lstat, "osf_old_lstat" , NULL, NULL, NULL },
86033189d31Sths#endif
86133189d31Sths#ifdef TARGET_NR_osf_old_open
86233189d31Sths{ TARGET_NR_osf_old_open, "osf_old_open" , NULL, NULL, NULL },
86333189d31Sths#endif
86433189d31Sths#ifdef TARGET_NR_osf_oldquota
86533189d31Sths{ TARGET_NR_osf_oldquota, "osf_oldquota" , NULL, NULL, NULL },
86633189d31Sths#endif
86733189d31Sths#ifdef TARGET_NR_osf_old_sigaction
86833189d31Sths{ TARGET_NR_osf_old_sigaction, "osf_old_sigaction" , NULL, NULL, NULL },
86933189d31Sths#endif
87033189d31Sths#ifdef TARGET_NR_osf_old_sigblock
87133189d31Sths{ TARGET_NR_osf_old_sigblock, "osf_old_sigblock" , NULL, NULL, NULL },
87233189d31Sths#endif
87333189d31Sths#ifdef TARGET_NR_osf_old_sigreturn
87433189d31Sths{ TARGET_NR_osf_old_sigreturn, "osf_old_sigreturn" , NULL, NULL, NULL },
87533189d31Sths#endif
87633189d31Sths#ifdef TARGET_NR_osf_old_sigsetmask
87733189d31Sths{ TARGET_NR_osf_old_sigsetmask, "osf_old_sigsetmask" , NULL, NULL, NULL },
87833189d31Sths#endif
87933189d31Sths#ifdef TARGET_NR_osf_old_sigvec
88033189d31Sths{ TARGET_NR_osf_old_sigvec, "osf_old_sigvec" , NULL, NULL, NULL },
88133189d31Sths#endif
88233189d31Sths#ifdef TARGET_NR_osf_old_stat
88333189d31Sths{ TARGET_NR_osf_old_stat, "osf_old_stat" , NULL, NULL, NULL },
88433189d31Sths#endif
88533189d31Sths#ifdef TARGET_NR_osf_old_vadvise
88633189d31Sths{ TARGET_NR_osf_old_vadvise, "osf_old_vadvise" , NULL, NULL, NULL },
88733189d31Sths#endif
88833189d31Sths#ifdef TARGET_NR_osf_old_vtrace
88933189d31Sths{ TARGET_NR_osf_old_vtrace, "osf_old_vtrace" , NULL, NULL, NULL },
89033189d31Sths#endif
89133189d31Sths#ifdef TARGET_NR_osf_old_wait
89233189d31Sths{ TARGET_NR_osf_old_wait, "osf_old_wait" , NULL, NULL, NULL },
89333189d31Sths#endif
89433189d31Sths#ifdef TARGET_NR_osf_pathconf
89533189d31Sths{ TARGET_NR_osf_pathconf, "osf_pathconf" , NULL, NULL, NULL },
89633189d31Sths#endif
89733189d31Sths#ifdef TARGET_NR_osf_pid_block
89833189d31Sths{ TARGET_NR_osf_pid_block, "osf_pid_block" , NULL, NULL, NULL },
89933189d31Sths#endif
90033189d31Sths#ifdef TARGET_NR_osf_pid_unblock
90133189d31Sths{ TARGET_NR_osf_pid_unblock, "osf_pid_unblock" , NULL, NULL, NULL },
90233189d31Sths#endif
90333189d31Sths#ifdef TARGET_NR_osf_plock
90433189d31Sths{ TARGET_NR_osf_plock, "osf_plock" , NULL, NULL, NULL },
90533189d31Sths#endif
90633189d31Sths#ifdef TARGET_NR_osf_priocntlset
90733189d31Sths{ TARGET_NR_osf_priocntlset, "osf_priocntlset" , NULL, NULL, NULL },
90833189d31Sths#endif
90933189d31Sths#ifdef TARGET_NR_osf_profil
91033189d31Sths{ TARGET_NR_osf_profil, "osf_profil" , NULL, NULL, NULL },
91133189d31Sths#endif
91233189d31Sths#ifdef TARGET_NR_osf_proplist_syscall
91333189d31Sths{ TARGET_NR_osf_proplist_syscall, "osf_proplist_syscall" , NULL, NULL, NULL },
91433189d31Sths#endif
91533189d31Sths#ifdef TARGET_NR_osf_reboot
91633189d31Sths{ TARGET_NR_osf_reboot, "osf_reboot" , NULL, NULL, NULL },
91733189d31Sths#endif
91833189d31Sths#ifdef TARGET_NR_osf_revoke
91933189d31Sths{ TARGET_NR_osf_revoke, "osf_revoke" , NULL, NULL, NULL },
92033189d31Sths#endif
92133189d31Sths#ifdef TARGET_NR_osf_sbrk
92233189d31Sths{ TARGET_NR_osf_sbrk, "osf_sbrk" , NULL, NULL, NULL },
92333189d31Sths#endif
92433189d31Sths#ifdef TARGET_NR_osf_security
92533189d31Sths{ TARGET_NR_osf_security, "osf_security" , NULL, NULL, NULL },
92633189d31Sths#endif
92733189d31Sths#ifdef TARGET_NR_osf_select
92833189d31Sths{ TARGET_NR_osf_select, "osf_select" , NULL, NULL, NULL },
92933189d31Sths#endif
93033189d31Sths#ifdef TARGET_NR_osf_sethostid
93133189d31Sths{ TARGET_NR_osf_sethostid, "osf_sethostid" , NULL, NULL, NULL },
93233189d31Sths#endif
93333189d31Sths#ifdef TARGET_NR_osf_setitimer
93433189d31Sths{ TARGET_NR_osf_setitimer, "osf_setitimer" , NULL, NULL, NULL },
93533189d31Sths#endif
93633189d31Sths#ifdef TARGET_NR_osf_setlogin
93733189d31Sths{ TARGET_NR_osf_setlogin, "osf_setlogin" , NULL, NULL, NULL },
93833189d31Sths#endif
93933189d31Sths#ifdef TARGET_NR_osf_set_program_attributes
94033189d31Sths{ TARGET_NR_osf_set_program_attributes, "osf_set_program_attributes" , NULL, NULL, NULL },
94133189d31Sths#endif
94233189d31Sths#ifdef TARGET_NR_osf_set_speculative
94333189d31Sths{ TARGET_NR_osf_set_speculative, "osf_set_speculative" , NULL, NULL, NULL },
94433189d31Sths#endif
94533189d31Sths#ifdef TARGET_NR_osf_setsysinfo
94633189d31Sths{ TARGET_NR_osf_setsysinfo, "osf_setsysinfo" , NULL, NULL, NULL },
94733189d31Sths#endif
94833189d31Sths#ifdef TARGET_NR_osf_settimeofday
94933189d31Sths{ TARGET_NR_osf_settimeofday, "osf_settimeofday" , NULL, NULL, NULL },
95033189d31Sths#endif
95133189d31Sths#ifdef TARGET_NR_osf_shmat
95233189d31Sths{ TARGET_NR_osf_shmat, "osf_shmat" , NULL, NULL, NULL },
95333189d31Sths#endif
95433189d31Sths#ifdef TARGET_NR_osf_signal
95533189d31Sths{ TARGET_NR_osf_signal, "osf_signal" , NULL, NULL, NULL },
95633189d31Sths#endif
95733189d31Sths#ifdef TARGET_NR_osf_sigprocmask
95833189d31Sths{ TARGET_NR_osf_sigprocmask, "osf_sigprocmask" , NULL, NULL, NULL },
95933189d31Sths#endif
96033189d31Sths#ifdef TARGET_NR_osf_sigsendset
96133189d31Sths{ TARGET_NR_osf_sigsendset, "osf_sigsendset" , NULL, NULL, NULL },
96233189d31Sths#endif
96333189d31Sths#ifdef TARGET_NR_osf_sigstack
96433189d31Sths{ TARGET_NR_osf_sigstack, "osf_sigstack" , NULL, NULL, NULL },
96533189d31Sths#endif
96633189d31Sths#ifdef TARGET_NR_osf_sigwaitprim
96733189d31Sths{ TARGET_NR_osf_sigwaitprim, "osf_sigwaitprim" , NULL, NULL, NULL },
96833189d31Sths#endif
96933189d31Sths#ifdef TARGET_NR_osf_sstk
97033189d31Sths{ TARGET_NR_osf_sstk, "osf_sstk" , NULL, NULL, NULL },
97133189d31Sths#endif
97233189d31Sths#ifdef TARGET_NR_osf_statfs
97333189d31Sths{ TARGET_NR_osf_statfs, "osf_statfs" , NULL, NULL, NULL },
97433189d31Sths#endif
97533189d31Sths#ifdef TARGET_NR_osf_subsys_info
97633189d31Sths{ TARGET_NR_osf_subsys_info, "osf_subsys_info" , NULL, NULL, NULL },
97733189d31Sths#endif
97833189d31Sths#ifdef TARGET_NR_osf_swapctl
97933189d31Sths{ TARGET_NR_osf_swapctl, "osf_swapctl" , NULL, NULL, NULL },
98033189d31Sths#endif
98133189d31Sths#ifdef TARGET_NR_osf_swapon
98233189d31Sths{ TARGET_NR_osf_swapon, "osf_swapon" , NULL, NULL, NULL },
98333189d31Sths#endif
98433189d31Sths#ifdef TARGET_NR_osf_syscall
98533189d31Sths{ TARGET_NR_osf_syscall, "osf_syscall" , NULL, NULL, NULL },
98633189d31Sths#endif
98733189d31Sths#ifdef TARGET_NR_osf_sysinfo
98833189d31Sths{ TARGET_NR_osf_sysinfo, "osf_sysinfo" , NULL, NULL, NULL },
98933189d31Sths#endif
99033189d31Sths#ifdef TARGET_NR_osf_table
99133189d31Sths{ TARGET_NR_osf_table, "osf_table" , NULL, NULL, NULL },
99233189d31Sths#endif
99333189d31Sths#ifdef TARGET_NR_osf_uadmin
99433189d31Sths{ TARGET_NR_osf_uadmin, "osf_uadmin" , NULL, NULL, NULL },
99533189d31Sths#endif
99633189d31Sths#ifdef TARGET_NR_osf_usleep_thread
99733189d31Sths{ TARGET_NR_osf_usleep_thread, "osf_usleep_thread" , NULL, NULL, NULL },
99833189d31Sths#endif
99933189d31Sths#ifdef TARGET_NR_osf_uswitch
100033189d31Sths{ TARGET_NR_osf_uswitch, "osf_uswitch" , NULL, NULL, NULL },
100133189d31Sths#endif
100233189d31Sths#ifdef TARGET_NR_osf_utc_adjtime
100333189d31Sths{ TARGET_NR_osf_utc_adjtime, "osf_utc_adjtime" , NULL, NULL, NULL },
100433189d31Sths#endif
100533189d31Sths#ifdef TARGET_NR_osf_utc_gettime
100633189d31Sths{ TARGET_NR_osf_utc_gettime, "osf_utc_gettime" , NULL, NULL, NULL },
100733189d31Sths#endif
100833189d31Sths#ifdef TARGET_NR_osf_utimes
100933189d31Sths{ TARGET_NR_osf_utimes, "osf_utimes" , NULL, NULL, NULL },
101033189d31Sths#endif
101133189d31Sths#ifdef TARGET_NR_osf_utsname
101233189d31Sths{ TARGET_NR_osf_utsname, "osf_utsname" , NULL, NULL, NULL },
101333189d31Sths#endif
101433189d31Sths#ifdef TARGET_NR_osf_wait4
101533189d31Sths{ TARGET_NR_osf_wait4, "osf_wait4" , NULL, NULL, NULL },
101633189d31Sths#endif
101733189d31Sths#ifdef TARGET_NR_osf_waitid
101833189d31Sths{ TARGET_NR_osf_waitid, "osf_waitid" , NULL, NULL, NULL },
101933189d31Sths#endif
102033189d31Sths#ifdef TARGET_NR_pause
102133189d31Sths{ TARGET_NR_pause, "pause" , NULL, NULL, NULL },
102233189d31Sths#endif
102333189d31Sths#ifdef TARGET_NR_pciconfig_iobase
102433189d31Sths{ TARGET_NR_pciconfig_iobase, "pciconfig_iobase" , NULL, NULL, NULL },
102533189d31Sths#endif
102633189d31Sths#ifdef TARGET_NR_pciconfig_read
102733189d31Sths{ TARGET_NR_pciconfig_read, "pciconfig_read" , NULL, NULL, NULL },
102833189d31Sths#endif
102933189d31Sths#ifdef TARGET_NR_pciconfig_write
103033189d31Sths{ TARGET_NR_pciconfig_write, "pciconfig_write" , NULL, NULL, NULL },
103133189d31Sths#endif
1032fea55615SAleksandar Markovic#ifdef TARGET_NR_perf_event_open
1033fea55615SAleksandar Markovic{ TARGET_NR_perf_event_open, "perf_event_open" , NULL, NULL, NULL },
1034fea55615SAleksandar Markovic#endif
103533189d31Sths#ifdef TARGET_NR_perfctr
103633189d31Sths{ TARGET_NR_perfctr, "perfctr" , NULL, NULL, NULL },
103733189d31Sths#endif
103833189d31Sths#ifdef TARGET_NR_personality
103933189d31Sths{ TARGET_NR_personality, "personality" , NULL, NULL, NULL },
104033189d31Sths#endif
104133189d31Sths#ifdef TARGET_NR_pipe
104233189d31Sths{ TARGET_NR_pipe, "pipe" , NULL, NULL, NULL },
104333189d31Sths#endif
104433189d31Sths#ifdef TARGET_NR_pivot_root
104533189d31Sths{ TARGET_NR_pivot_root, "pivot_root" , NULL, NULL, NULL },
104633189d31Sths#endif
104733189d31Sths#ifdef TARGET_NR_poll
104833189d31Sths{ TARGET_NR_poll, "poll" , NULL, NULL, NULL },
104933189d31Sths#endif
105033189d31Sths#ifdef TARGET_NR_ppoll
105133189d31Sths{ TARGET_NR_ppoll, "ppoll" , NULL, NULL, NULL },
105233189d31Sths#endif
105333189d31Sths#ifdef TARGET_NR_prctl
105433189d31Sths{ TARGET_NR_prctl, "prctl" , NULL, NULL, NULL },
105533189d31Sths#endif
105633189d31Sths#ifdef TARGET_NR_pread64
105733189d31Sths{ TARGET_NR_pread64, "pread64" , NULL, NULL, NULL },
105833189d31Sths#endif
1059fea55615SAleksandar Markovic#ifdef TARGET_NR_preadv
1060fea55615SAleksandar Markovic{ TARGET_NR_preadv, "preadv" , NULL, NULL, NULL },
1061fea55615SAleksandar Markovic#endif
1062fea55615SAleksandar Markovic#ifdef TARGET_NR_prlimit64
1063fea55615SAleksandar Markovic{ TARGET_NR_prlimit64, "prlimit64" , NULL, NULL, NULL },
1064fea55615SAleksandar Markovic#endif
1065fea55615SAleksandar Markovic#ifdef TARGET_NR_process_vm_readv
1066fea55615SAleksandar Markovic{ TARGET_NR_process_vm_readv, "process_vm_readv" , NULL, NULL, NULL },
1067fea55615SAleksandar Markovic#endif
1068fea55615SAleksandar Markovic#ifdef TARGET_NR_process_vm_writev
1069fea55615SAleksandar Markovic{ TARGET_NR_process_vm_writev, "process_vm_writev" , NULL, NULL, NULL },
1070fea55615SAleksandar Markovic#endif
107133189d31Sths#ifdef TARGET_NR_prof
107233189d31Sths{ TARGET_NR_prof, "prof" , NULL, NULL, NULL },
107333189d31Sths#endif
107433189d31Sths#ifdef TARGET_NR_profil
107533189d31Sths{ TARGET_NR_profil, "profil" , NULL, NULL, NULL },
107633189d31Sths#endif
107733189d31Sths#ifdef TARGET_NR_pselect6
107833189d31Sths{ TARGET_NR_pselect6, "pselect6" , NULL, NULL, NULL },
107933189d31Sths#endif
108033189d31Sths#ifdef TARGET_NR_ptrace
108133189d31Sths{ TARGET_NR_ptrace, "ptrace" , NULL, NULL, NULL },
108233189d31Sths#endif
108333189d31Sths#ifdef TARGET_NR_putpmsg
108433189d31Sths{ TARGET_NR_putpmsg, "putpmsg" , NULL, NULL, NULL },
108533189d31Sths#endif
108633189d31Sths#ifdef TARGET_NR_pwrite64
108733189d31Sths{ TARGET_NR_pwrite64, "pwrite64" , NULL, NULL, NULL },
108833189d31Sths#endif
1089fea55615SAleksandar Markovic#ifdef TARGET_NR_pwritev
1090fea55615SAleksandar Markovic{ TARGET_NR_pwritev, "pwritev" , NULL, NULL, NULL },
1091fea55615SAleksandar Markovic#endif
109233189d31Sths#ifdef TARGET_NR_query_module
109333189d31Sths{ TARGET_NR_query_module, "query_module" , NULL, NULL, NULL },
109433189d31Sths#endif
109533189d31Sths#ifdef TARGET_NR_quotactl
109633189d31Sths{ TARGET_NR_quotactl, "quotactl" , NULL, NULL, NULL },
109733189d31Sths#endif
109833189d31Sths#ifdef TARGET_NR_read
109933189d31Sths{ TARGET_NR_read, "read" , "%s(%d,%#x,%d)", NULL, NULL },
110033189d31Sths#endif
110133189d31Sths#ifdef TARGET_NR_readahead
110233189d31Sths{ TARGET_NR_readahead, "readahead" , NULL, NULL, NULL },
110333189d31Sths#endif
110433189d31Sths#ifdef TARGET_NR_readdir
110533189d31Sths{ TARGET_NR_readdir, "readdir" , NULL, NULL, NULL },
110633189d31Sths#endif
110733189d31Sths#ifdef TARGET_NR_readlink
110874d753acSMika Westerberg{ TARGET_NR_readlink, "readlink" , NULL, print_readlink, NULL },
110933189d31Sths#endif
111033189d31Sths#ifdef TARGET_NR_readlinkat
111174d753acSMika Westerberg{ TARGET_NR_readlinkat, "readlinkat" , NULL, print_readlinkat, NULL },
111233189d31Sths#endif
111333189d31Sths#ifdef TARGET_NR_readv
111433189d31Sths{ TARGET_NR_readv, "readv" , NULL, NULL, NULL },
111533189d31Sths#endif
111633189d31Sths#ifdef TARGET_NR_reboot
111733189d31Sths{ TARGET_NR_reboot, "reboot" , NULL, NULL, NULL },
111833189d31Sths#endif
111933189d31Sths#ifdef TARGET_NR_recv
112033189d31Sths{ TARGET_NR_recv, "recv" , NULL, NULL, NULL },
112133189d31Sths#endif
112233189d31Sths#ifdef TARGET_NR_recvfrom
112333189d31Sths{ TARGET_NR_recvfrom, "recvfrom" , NULL, NULL, NULL },
112433189d31Sths#endif
1125fea55615SAleksandar Markovic#ifdef TARGET_NR_recvmmsg
1126fea55615SAleksandar Markovic{ TARGET_NR_recvmmsg, "recvmmsg" , NULL, NULL, NULL },
1127fea55615SAleksandar Markovic#endif
112833189d31Sths#ifdef TARGET_NR_recvmsg
1129377e93e9SPhilippe Mathieu-Daudé{ TARGET_NR_recvmsg, "recvmsg" , "%s(%d,%p,%#x)", NULL, NULL },
113033189d31Sths#endif
113133189d31Sths#ifdef TARGET_NR_remap_file_pages
113233189d31Sths{ TARGET_NR_remap_file_pages, "remap_file_pages" , NULL, NULL, NULL },
113333189d31Sths#endif
113433189d31Sths#ifdef TARGET_NR_removexattr
11354fc3cddeSFilip Bozuta{ TARGET_NR_removexattr, "removexattr" , NULL, print_removexattr, NULL },
113633189d31Sths#endif
113733189d31Sths#ifdef TARGET_NR_rename
113874d753acSMika Westerberg{ TARGET_NR_rename, "rename" , NULL, print_rename, NULL },
113933189d31Sths#endif
114033189d31Sths#ifdef TARGET_NR_renameat
114174d753acSMika Westerberg{ TARGET_NR_renameat, "renameat" , NULL, print_renameat, NULL },
114233189d31Sths#endif
1143fea55615SAleksandar Markovic#ifdef TARGET_NR_renameat2
1144fea55615SAleksandar Markovic{ TARGET_NR_renameat2, "renameat2" , NULL, NULL, NULL },
1145fea55615SAleksandar Markovic#endif
114633189d31Sths#ifdef TARGET_NR_request_key
114733189d31Sths{ TARGET_NR_request_key, "request_key" , NULL, NULL, NULL },
114833189d31Sths#endif
1149fea55615SAleksandar Markovic#ifdef TARGET_NR_reserved177
1150fea55615SAleksandar Markovic{ TARGET_NR_reserved177, "reserved177" , NULL, NULL, NULL },
1151fea55615SAleksandar Markovic#endif
1152fea55615SAleksandar Markovic#ifdef TARGET_NR_reserved193
1153fea55615SAleksandar Markovic{ TARGET_NR_reserved193, "reserved193" , NULL, NULL, NULL },
1154fea55615SAleksandar Markovic#endif
115533189d31Sths#ifdef TARGET_NR_reserved221
115633189d31Sths{ TARGET_NR_reserved221, "reserved221" , NULL, NULL, NULL },
115733189d31Sths#endif
115833189d31Sths#ifdef TARGET_NR_reserved82
115933189d31Sths{ TARGET_NR_reserved82, "reserved82" , NULL, NULL, NULL },
116033189d31Sths#endif
116133189d31Sths#ifdef TARGET_NR_restart_syscall
116233189d31Sths{ TARGET_NR_restart_syscall, "restart_syscall" , NULL, NULL, NULL },
116333189d31Sths#endif
116433189d31Sths#ifdef TARGET_NR_rmdir
116533189d31Sths{ TARGET_NR_rmdir, "rmdir" , NULL, NULL, NULL },
116633189d31Sths#endif
116733189d31Sths#ifdef TARGET_NR_rt_sigaction
1168608e5592SLaurent Vivier{ TARGET_NR_rt_sigaction, "rt_sigaction" , NULL, print_rt_sigaction, NULL },
116933189d31Sths#endif
117033189d31Sths#ifdef TARGET_NR_rt_sigpending
117133189d31Sths{ TARGET_NR_rt_sigpending, "rt_sigpending" , NULL, NULL, NULL },
117233189d31Sths#endif
117333189d31Sths#ifdef TARGET_NR_rt_sigprocmask
1174608e5592SLaurent Vivier{ TARGET_NR_rt_sigprocmask, "rt_sigprocmask" , NULL, print_rt_sigprocmask, NULL },
117533189d31Sths#endif
117633189d31Sths#ifdef TARGET_NR_rt_sigqueueinfo
11775162264eSMiloš Stojanović{ TARGET_NR_rt_sigqueueinfo, "rt_sigqueueinfo" , NULL, print_rt_sigqueueinfo, NULL },
117833189d31Sths#endif
117933189d31Sths#ifdef TARGET_NR_rt_sigreturn
118033189d31Sths{ TARGET_NR_rt_sigreturn, "rt_sigreturn" , NULL, NULL, NULL },
118133189d31Sths#endif
118233189d31Sths#ifdef TARGET_NR_rt_sigsuspend
118333189d31Sths{ TARGET_NR_rt_sigsuspend, "rt_sigsuspend" , NULL, NULL, NULL },
118433189d31Sths#endif
118533189d31Sths#ifdef TARGET_NR_rt_sigtimedwait
118633189d31Sths{ TARGET_NR_rt_sigtimedwait, "rt_sigtimedwait" , NULL, NULL, NULL },
118733189d31Sths#endif
1188fea55615SAleksandar Markovic#ifdef TARGET_NR_rt_tgsigqueueinfo
1189243e0fe5SMiloš Stojanović{ TARGET_NR_rt_tgsigqueueinfo, "rt_tgsigqueueinfo" , NULL, print_rt_tgsigqueueinfo, NULL },
1190fea55615SAleksandar Markovic#endif
119133189d31Sths#ifdef TARGET_NR_sched_getaffinity
119233189d31Sths{ TARGET_NR_sched_getaffinity, "sched_getaffinity" , NULL, NULL, NULL },
119333189d31Sths#endif
119433189d31Sths#ifdef TARGET_NR_sched_get_affinity
119533189d31Sths{ TARGET_NR_sched_get_affinity, "sched_get_affinity" , NULL, NULL, NULL },
119633189d31Sths#endif
1197fea55615SAleksandar Markovic#ifdef TARGET_NR_sched_getattr
1198fea55615SAleksandar Markovic{ TARGET_NR_sched_getattr, "sched_getattr" , NULL, NULL, NULL },
1199fea55615SAleksandar Markovic#endif
120033189d31Sths#ifdef TARGET_NR_sched_getparam
120133189d31Sths{ TARGET_NR_sched_getparam, "sched_getparam" , NULL, NULL, NULL },
120233189d31Sths#endif
120333189d31Sths#ifdef TARGET_NR_sched_get_priority_max
120433189d31Sths{ TARGET_NR_sched_get_priority_max, "sched_get_priority_max" , NULL, NULL, NULL },
120533189d31Sths#endif
120633189d31Sths#ifdef TARGET_NR_sched_get_priority_min
120733189d31Sths{ TARGET_NR_sched_get_priority_min, "sched_get_priority_min" , NULL, NULL, NULL },
120833189d31Sths#endif
120933189d31Sths#ifdef TARGET_NR_sched_getscheduler
121033189d31Sths{ TARGET_NR_sched_getscheduler, "sched_getscheduler" , NULL, NULL, NULL },
121133189d31Sths#endif
121233189d31Sths#ifdef TARGET_NR_sched_rr_get_interval
121333189d31Sths{ TARGET_NR_sched_rr_get_interval, "sched_rr_get_interval" , NULL, NULL, NULL },
121433189d31Sths#endif
121533189d31Sths#ifdef TARGET_NR_sched_setaffinity
121633189d31Sths{ TARGET_NR_sched_setaffinity, "sched_setaffinity" , NULL, NULL, NULL },
121733189d31Sths#endif
1218fea55615SAleksandar Markovic#ifdef TARGET_NR_sched_setatt
1219fea55615SAleksandar Markovic{ TARGET_NR_sched_setatt, "sched_setatt" , NULL, NULL, NULL },
1220fea55615SAleksandar Markovic#endif
122133189d31Sths#ifdef TARGET_NR_sched_set_affinity
122233189d31Sths{ TARGET_NR_sched_set_affinity, "sched_set_affinity" , NULL, NULL, NULL },
122333189d31Sths#endif
122433189d31Sths#ifdef TARGET_NR_sched_setparam
122533189d31Sths{ TARGET_NR_sched_setparam, "sched_setparam" , NULL, NULL, NULL },
122633189d31Sths#endif
122733189d31Sths#ifdef TARGET_NR_sched_setscheduler
122833189d31Sths{ TARGET_NR_sched_setscheduler, "sched_setscheduler" , NULL, NULL, NULL },
122933189d31Sths#endif
123033189d31Sths#ifdef TARGET_NR_sched_yield
123133189d31Sths{ TARGET_NR_sched_yield, "sched_yield" , NULL, NULL, NULL },
123233189d31Sths#endif
1233fea55615SAleksandar Markovic#ifdef TARGET_NR_seccomp
1234fea55615SAleksandar Markovic{ TARGET_NR_seccomp, "seccomp" , NULL, NULL, NULL },
1235fea55615SAleksandar Markovic#endif
123633189d31Sths#ifdef TARGET_NR_security
123733189d31Sths{ TARGET_NR_security, "security" , NULL, NULL, NULL },
123833189d31Sths#endif
123933189d31Sths#ifdef TARGET_NR_select
124033189d31Sths{ TARGET_NR_select, "select" , NULL, NULL, NULL },
124133189d31Sths#endif
124233189d31Sths#ifdef TARGET_NR_semctl
124333189d31Sths{ TARGET_NR_semctl, "semctl" , NULL, print_semctl, NULL },
124433189d31Sths#endif
124533189d31Sths#ifdef TARGET_NR_semget
124633189d31Sths{ TARGET_NR_semget, "semget" , NULL, NULL, NULL },
124733189d31Sths#endif
124833189d31Sths#ifdef TARGET_NR_semop
124933189d31Sths{ TARGET_NR_semop, "semop" , NULL, NULL, NULL },
125033189d31Sths#endif
125133189d31Sths#ifdef TARGET_NR_semtimedop
125233189d31Sths{ TARGET_NR_semtimedop, "semtimedop" , NULL, NULL, NULL },
125333189d31Sths#endif
125433189d31Sths#ifdef TARGET_NR_send
125533189d31Sths{ TARGET_NR_send, "send" , NULL, NULL, NULL },
125633189d31Sths#endif
125733189d31Sths#ifdef TARGET_NR_sendfile
125833189d31Sths{ TARGET_NR_sendfile, "sendfile" , NULL, NULL, NULL },
125933189d31Sths#endif
126033189d31Sths#ifdef TARGET_NR_sendfile64
126133189d31Sths{ TARGET_NR_sendfile64, "sendfile64" , NULL, NULL, NULL },
126233189d31Sths#endif
1263fea55615SAleksandar Markovic#ifdef TARGET_NR_sendmmsg
1264fea55615SAleksandar Markovic{ TARGET_NR_sendmmsg, "sendmmsg" , NULL, NULL, NULL },
1265fea55615SAleksandar Markovic#endif
126633189d31Sths#ifdef TARGET_NR_sendmsg
126733189d31Sths{ TARGET_NR_sendmsg, "sendmsg" , NULL, NULL, NULL },
126833189d31Sths#endif
126933189d31Sths#ifdef TARGET_NR_sendto
127033189d31Sths{ TARGET_NR_sendto, "sendto" , NULL, NULL, NULL },
127133189d31Sths#endif
127233189d31Sths#ifdef TARGET_NR_setdomainname
127333189d31Sths{ TARGET_NR_setdomainname, "setdomainname" , NULL, NULL, NULL },
127433189d31Sths#endif
127533189d31Sths#ifdef TARGET_NR_setfsgid
12769cbc0578SHelge Deller{ TARGET_NR_setfsgid, "setfsgid" , "%s(%u)", NULL, NULL },
127733189d31Sths#endif
127833189d31Sths#ifdef TARGET_NR_setfsgid32
12799cbc0578SHelge Deller{ TARGET_NR_setfsgid32, "setfsgid32" , "%s(%u)" , NULL, NULL },
128033189d31Sths#endif
128133189d31Sths#ifdef TARGET_NR_setfsuid
12829cbc0578SHelge Deller{ TARGET_NR_setfsuid, "setfsuid" , "%s(%u)" , NULL, NULL },
128333189d31Sths#endif
128433189d31Sths#ifdef TARGET_NR_setfsuid32
128533189d31Sths{ TARGET_NR_setfsuid32, "setfsuid32" , NULL, NULL, NULL },
128633189d31Sths#endif
128733189d31Sths#ifdef TARGET_NR_setgid
12889cbc0578SHelge Deller{ TARGET_NR_setgid, "setgid" , "%s(%u)", NULL, NULL },
128933189d31Sths#endif
129033189d31Sths#ifdef TARGET_NR_setgid32
12919cbc0578SHelge Deller{ TARGET_NR_setgid32, "setgid32" , "%s(%u)", NULL, NULL },
129233189d31Sths#endif
129333189d31Sths#ifdef TARGET_NR_setgroups
129433189d31Sths{ TARGET_NR_setgroups, "setgroups" , NULL, NULL, NULL },
129533189d31Sths#endif
129633189d31Sths#ifdef TARGET_NR_setgroups32
129733189d31Sths{ TARGET_NR_setgroups32, "setgroups32" , NULL, NULL, NULL },
129833189d31Sths#endif
129933189d31Sths#ifdef TARGET_NR_sethae
130033189d31Sths{ TARGET_NR_sethae, "sethae" , NULL, NULL, NULL },
130133189d31Sths#endif
130233189d31Sths#ifdef TARGET_NR_sethostname
130333189d31Sths{ TARGET_NR_sethostname, "sethostname" , NULL, NULL, NULL },
130433189d31Sths#endif
130533189d31Sths#ifdef TARGET_NR_setitimer
13061a674adfSFilip Bozuta{ TARGET_NR_setitimer, "setitimer" , NULL, print_setitimer,
13071a674adfSFilip Bozuta                       print_syscall_ret_setitimer },
130833189d31Sths#endif
130933189d31Sths#ifdef TARGET_NR_set_mempolicy
131033189d31Sths{ TARGET_NR_set_mempolicy, "set_mempolicy" , NULL, NULL, NULL },
131133189d31Sths#endif
13129af5c906SRiku Voipio#ifdef TARGET_NR_setns
13139af5c906SRiku Voipio{ TARGET_NR_setns, "setns" , NULL, NULL, NULL },
13149af5c906SRiku Voipio#endif
131533189d31Sths#ifdef TARGET_NR_setpgid
13169cbc0578SHelge Deller{ TARGET_NR_setpgid, "setpgid" , "%s(%u,%u)", NULL, NULL },
131733189d31Sths#endif
131833189d31Sths#ifdef TARGET_NR_setpgrp
131933189d31Sths{ TARGET_NR_setpgrp, "setpgrp" , NULL, NULL, NULL },
132033189d31Sths#endif
132133189d31Sths#ifdef TARGET_NR_setpriority
132233189d31Sths{ TARGET_NR_setpriority, "setpriority" , NULL, NULL, NULL },
132333189d31Sths#endif
132433189d31Sths#ifdef TARGET_NR_setregid
132533189d31Sths{ TARGET_NR_setregid, "setregid" , NULL, NULL, NULL },
132633189d31Sths#endif
132733189d31Sths#ifdef TARGET_NR_setregid32
132833189d31Sths{ TARGET_NR_setregid32, "setregid32" , NULL, NULL, NULL },
132933189d31Sths#endif
133033189d31Sths#ifdef TARGET_NR_setresgid
13319cbc0578SHelge Deller{ TARGET_NR_setresgid, "setresgid" , "%s(%u,%u,%u)", NULL, NULL },
133233189d31Sths#endif
133333189d31Sths#ifdef TARGET_NR_setresgid32
133433189d31Sths{ TARGET_NR_setresgid32, "setresgid32" , NULL, NULL, NULL },
133533189d31Sths#endif
133633189d31Sths#ifdef TARGET_NR_setresuid
13379cbc0578SHelge Deller{ TARGET_NR_setresuid, "setresuid" , "%s(%u,%u,%u)", NULL, NULL },
133833189d31Sths#endif
133933189d31Sths#ifdef TARGET_NR_setresuid32
13409cbc0578SHelge Deller{ TARGET_NR_setresuid32, "setresuid32" , "%s(%u,%u,%u)", NULL, NULL },
134133189d31Sths#endif
134233189d31Sths#ifdef TARGET_NR_setreuid
13439cbc0578SHelge Deller{ TARGET_NR_setreuid, "setreuid" , "%s(%u,%u)", NULL, NULL },
134433189d31Sths#endif
134533189d31Sths#ifdef TARGET_NR_setreuid32
13469cbc0578SHelge Deller{ TARGET_NR_setreuid32, "setreuid32" , "%s(%u,%u)", NULL, NULL },
134733189d31Sths#endif
134833189d31Sths#ifdef TARGET_NR_setrlimit
134933189d31Sths{ TARGET_NR_setrlimit, "setrlimit" , NULL, NULL, NULL },
135033189d31Sths#endif
135133189d31Sths#ifdef TARGET_NR_set_robust_list
135233189d31Sths{ TARGET_NR_set_robust_list, "set_robust_list" , NULL, NULL, NULL },
135333189d31Sths#endif
135433189d31Sths#ifdef TARGET_NR_setsid
13559cbc0578SHelge Deller{ TARGET_NR_setsid, "setsid" , "%s()", NULL, NULL },
135633189d31Sths#endif
135733189d31Sths#ifdef TARGET_NR_setsockopt
135833189d31Sths{ TARGET_NR_setsockopt, "setsockopt" , NULL, NULL, NULL },
135933189d31Sths#endif
136033189d31Sths#ifdef TARGET_NR_set_thread_area
13619a6309e7SLaurent Vivier{ TARGET_NR_set_thread_area, "set_thread_area", "%s(0x"TARGET_ABI_FMT_lx")",
13629a6309e7SLaurent Vivier  NULL, NULL },
136333189d31Sths#endif
136433189d31Sths#ifdef TARGET_NR_set_tid_address
136533189d31Sths{ TARGET_NR_set_tid_address, "set_tid_address" , NULL, NULL, NULL },
136633189d31Sths#endif
136733189d31Sths#ifdef TARGET_NR_settimeofday
13680d2187c4SPhilippe Mathieu-Daudé{ TARGET_NR_settimeofday, "settimeofday" , NULL, print_settimeofday, NULL },
136933189d31Sths#endif
137033189d31Sths#ifdef TARGET_NR_setuid
137133189d31Sths{ TARGET_NR_setuid, "setuid" , NULL, NULL, NULL },
137233189d31Sths#endif
137333189d31Sths#ifdef TARGET_NR_setuid32
137433189d31Sths{ TARGET_NR_setuid32, "setuid32" , NULL, NULL, NULL },
137533189d31Sths#endif
137633189d31Sths#ifdef TARGET_NR_setxattr
137733189d31Sths{ TARGET_NR_setxattr, "setxattr" , NULL, NULL, NULL },
137833189d31Sths#endif
137933189d31Sths#ifdef TARGET_NR_sgetmask
138033189d31Sths{ TARGET_NR_sgetmask, "sgetmask" , NULL, NULL, NULL },
138133189d31Sths#endif
138233189d31Sths#ifdef TARGET_NR_shmat
1383d4354694Sbalrog{ TARGET_NR_shmat, "shmat" , NULL, NULL, print_syscall_ret_addr },
138433189d31Sths#endif
138533189d31Sths#ifdef TARGET_NR_shmctl
138633189d31Sths{ TARGET_NR_shmctl, "shmctl" , NULL, NULL, NULL },
138733189d31Sths#endif
138833189d31Sths#ifdef TARGET_NR_shmdt
138933189d31Sths{ TARGET_NR_shmdt, "shmdt" , NULL, NULL, NULL },
139033189d31Sths#endif
139133189d31Sths#ifdef TARGET_NR_shmget
139233189d31Sths{ TARGET_NR_shmget, "shmget" , NULL, NULL, NULL },
139333189d31Sths#endif
139433189d31Sths#ifdef TARGET_NR_shutdown
139533189d31Sths{ TARGET_NR_shutdown, "shutdown" , NULL, NULL, NULL },
139633189d31Sths#endif
139733189d31Sths#ifdef TARGET_NR_sigaction
139833189d31Sths{ TARGET_NR_sigaction, "sigaction" , NULL, NULL, NULL },
139933189d31Sths#endif
140033189d31Sths#ifdef TARGET_NR_sigaltstack
140133189d31Sths{ TARGET_NR_sigaltstack, "sigaltstack" , "%s(%p,%p)", NULL, NULL },
140233189d31Sths#endif
140333189d31Sths#ifdef TARGET_NR_signal
140433189d31Sths{ TARGET_NR_signal, "signal" , NULL, NULL, NULL },
140533189d31Sths#endif
1406fea55615SAleksandar Markovic#ifdef TARGET_NR_signalfd
1407fea55615SAleksandar Markovic{ TARGET_NR_signalfd, "signalfd" , NULL, NULL, NULL },
1408fea55615SAleksandar Markovic#endif
1409fea55615SAleksandar Markovic#ifdef TARGET_NR_signalfd4
1410fea55615SAleksandar Markovic{ TARGET_NR_signalfd4, "signalfd4" , NULL, NULL, NULL },
1411fea55615SAleksandar Markovic#endif
141233189d31Sths#ifdef TARGET_NR_sigpending
141333189d31Sths{ TARGET_NR_sigpending, "sigpending" , NULL, NULL, NULL },
141433189d31Sths#endif
141533189d31Sths#ifdef TARGET_NR_sigprocmask
141633189d31Sths{ TARGET_NR_sigprocmask, "sigprocmask" , NULL, NULL, NULL },
141733189d31Sths#endif
141833189d31Sths#ifdef TARGET_NR_sigreturn
141933189d31Sths{ TARGET_NR_sigreturn, "sigreturn" , NULL, NULL, NULL },
142033189d31Sths#endif
142133189d31Sths#ifdef TARGET_NR_sigsuspend
142233189d31Sths{ TARGET_NR_sigsuspend, "sigsuspend" , NULL, NULL, NULL },
142333189d31Sths#endif
142433189d31Sths#ifdef TARGET_NR_socket
14258997d1bdSLaurent Vivier{ TARGET_NR_socket, "socket" , NULL, print_socket, NULL },
142633189d31Sths#endif
142733189d31Sths#ifdef TARGET_NR_socketcall
1428fb3aabf3SLaurent Vivier{ TARGET_NR_socketcall, "socketcall" , NULL, print_socketcall, NULL },
142933189d31Sths#endif
143033189d31Sths#ifdef TARGET_NR_socketpair
143133189d31Sths{ TARGET_NR_socketpair, "socketpair" , NULL, NULL, NULL },
143233189d31Sths#endif
143333189d31Sths#ifdef TARGET_NR_splice
143433189d31Sths{ TARGET_NR_splice, "splice" , NULL, NULL, NULL },
143533189d31Sths#endif
143633189d31Sths#ifdef TARGET_NR_ssetmask
143733189d31Sths{ TARGET_NR_ssetmask, "ssetmask" , NULL, NULL, NULL },
143833189d31Sths#endif
143933189d31Sths#ifdef TARGET_NR_stat
144074d753acSMika Westerberg{ TARGET_NR_stat, "stat" , NULL, print_stat, NULL },
144133189d31Sths#endif
144233189d31Sths#ifdef TARGET_NR_stat64
144374d753acSMika Westerberg{ TARGET_NR_stat64, "stat64" , NULL, print_stat64, NULL },
144433189d31Sths#endif
144533189d31Sths#ifdef TARGET_NR_statfs
144674d753acSMika Westerberg{ TARGET_NR_statfs, "statfs" , NULL, print_statfs, NULL },
144733189d31Sths#endif
144833189d31Sths#ifdef TARGET_NR_statfs64
144974d753acSMika Westerberg{ TARGET_NR_statfs64, "statfs64" , NULL, print_statfs64, NULL },
145033189d31Sths#endif
145133189d31Sths#ifdef TARGET_NR_stime
145233189d31Sths{ TARGET_NR_stime, "stime" , NULL, NULL, NULL },
145333189d31Sths#endif
145433189d31Sths#ifdef TARGET_NR_streams1
145533189d31Sths{ TARGET_NR_streams1, "streams1" , NULL, NULL, NULL },
145633189d31Sths#endif
145733189d31Sths#ifdef TARGET_NR_streams2
145833189d31Sths{ TARGET_NR_streams2, "streams2" , NULL, NULL, NULL },
145933189d31Sths#endif
146033189d31Sths#ifdef TARGET_NR_stty
146133189d31Sths{ TARGET_NR_stty, "stty" , NULL, NULL, NULL },
146233189d31Sths#endif
146333189d31Sths#ifdef TARGET_NR_swapcontext
146433189d31Sths{ TARGET_NR_swapcontext, "swapcontext" , NULL, NULL, NULL },
146533189d31Sths#endif
146633189d31Sths#ifdef TARGET_NR_swapoff
146733189d31Sths{ TARGET_NR_swapoff, "swapoff" , NULL, NULL, NULL },
146833189d31Sths#endif
146933189d31Sths#ifdef TARGET_NR_swapon
147033189d31Sths{ TARGET_NR_swapon, "swapon" , NULL, NULL, NULL },
147133189d31Sths#endif
147233189d31Sths#ifdef TARGET_NR_symlink
147374d753acSMika Westerberg{ TARGET_NR_symlink, "symlink" , NULL, print_symlink, NULL },
147433189d31Sths#endif
147533189d31Sths#ifdef TARGET_NR_symlinkat
147674d753acSMika Westerberg{ TARGET_NR_symlinkat, "symlinkat", NULL, print_symlinkat, NULL },
147733189d31Sths#endif
147833189d31Sths#ifdef TARGET_NR_sync
147933189d31Sths{ TARGET_NR_sync, "sync" , NULL, NULL, NULL },
148033189d31Sths#endif
1481fea55615SAleksandar Markovic#ifdef TARGET_NR_syncfs
14825a03cd00SAleksandar Markovic{ TARGET_NR_syncfs, "syncfs" , "%s(%d)", NULL, NULL },
1483fea55615SAleksandar Markovic#endif
148433189d31Sths#ifdef TARGET_NR_syscall
148533189d31Sths{ TARGET_NR_syscall, "syscall" , NULL, NULL, NULL },
148633189d31Sths#endif
148733189d31Sths#ifdef TARGET_NR__sysctl
148833189d31Sths{ TARGET_NR__sysctl, "_sysctl" , NULL, NULL, NULL },
148933189d31Sths#endif
149033189d31Sths#ifdef TARGET_NR_sysfs
149133189d31Sths{ TARGET_NR_sysfs, "sysfs" , NULL, NULL, NULL },
149233189d31Sths#endif
149333189d31Sths#ifdef TARGET_NR_sysinfo
149433189d31Sths{ TARGET_NR_sysinfo, "sysinfo" , NULL, NULL, NULL },
149533189d31Sths#endif
149633189d31Sths#ifdef TARGET_NR_sys_kexec_load
149733189d31Sths{ TARGET_NR_sys_kexec_load, "sys_kexec_load" , NULL, NULL, NULL },
149833189d31Sths#endif
149933189d31Sths#ifdef TARGET_NR_syslog
1500da2c8ad7SAleksandar Markovic{ TARGET_NR_syslog, "syslog" , NULL, print_syslog, NULL },
150133189d31Sths#endif
150233189d31Sths#ifdef TARGET_NR_sysmips
150333189d31Sths{ TARGET_NR_sysmips, "sysmips" , NULL, NULL, NULL },
150433189d31Sths#endif
150533189d31Sths#ifdef TARGET_NR_sys_setaltroot
150633189d31Sths{ TARGET_NR_sys_setaltroot, "sys_setaltroot" , NULL, NULL, NULL },
150733189d31Sths#endif
150833189d31Sths#ifdef TARGET_NR_tee
150933189d31Sths{ TARGET_NR_tee, "tee" , NULL, NULL, NULL },
151033189d31Sths#endif
151133189d31Sths#ifdef TARGET_NR_tgkill
15125162264eSMiloš Stojanović{ TARGET_NR_tgkill, "tgkill" , NULL, print_tgkill, NULL },
151333189d31Sths#endif
151433189d31Sths#ifdef TARGET_NR_time
151533189d31Sths{ TARGET_NR_time, "time" , NULL, NULL, NULL },
151633189d31Sths#endif
151733189d31Sths#ifdef TARGET_NR_timer_create
151833189d31Sths{ TARGET_NR_timer_create, "timer_create" , NULL, NULL, NULL },
151933189d31Sths#endif
152033189d31Sths#ifdef TARGET_NR_timer_delete
152133189d31Sths{ TARGET_NR_timer_delete, "timer_delete" , NULL, NULL, NULL },
152233189d31Sths#endif
152333189d31Sths#ifdef TARGET_NR_timer_getoverrun
152433189d31Sths{ TARGET_NR_timer_getoverrun, "timer_getoverrun" , NULL, NULL, NULL },
152533189d31Sths#endif
152633189d31Sths#ifdef TARGET_NR_timer_gettime
152733189d31Sths{ TARGET_NR_timer_gettime, "timer_gettime" , NULL, NULL, NULL },
152833189d31Sths#endif
152933189d31Sths#ifdef TARGET_NR_timer_settime
153033189d31Sths{ TARGET_NR_timer_settime, "timer_settime" , NULL, NULL, NULL },
153133189d31Sths#endif
1532fea55615SAleksandar Markovic#ifdef TARGET_NR_timerfd
1533fea55615SAleksandar Markovic{ TARGET_NR_timerfd, "timerfd" , NULL, NULL, NULL },
1534fea55615SAleksandar Markovic#endif
153551834341SRiku Voipio#ifdef TARGET_NR_timerfd_create
153651834341SRiku Voipio{ TARGET_NR_timerfd_create, "timerfd_create" , NULL, NULL, NULL },
153751834341SRiku Voipio#endif
153851834341SRiku Voipio#ifdef TARGET_NR_timerfd_gettime
153951834341SRiku Voipio{ TARGET_NR_timerfd_gettime, "timerfd_gettime" , NULL, NULL, NULL },
154051834341SRiku Voipio#endif
154151834341SRiku Voipio#ifdef TARGET_NR_timerfd_settime
154251834341SRiku Voipio{ TARGET_NR_timerfd_settime, "timerfd_settime" , NULL, NULL, NULL },
154351834341SRiku Voipio#endif
154433189d31Sths#ifdef TARGET_NR_times
154533189d31Sths{ TARGET_NR_times, "times" , NULL, NULL, NULL },
154633189d31Sths#endif
154733189d31Sths#ifdef TARGET_NR_tkill
15485162264eSMiloš Stojanović{ TARGET_NR_tkill, "tkill" , NULL, print_tkill, NULL },
154933189d31Sths#endif
155033189d31Sths#ifdef TARGET_NR_truncate
15517c89f343SFilip Bozuta{ TARGET_NR_truncate, "truncate" , NULL, print_truncate, NULL },
155233189d31Sths#endif
155333189d31Sths#ifdef TARGET_NR_truncate64
15547c89f343SFilip Bozuta{ TARGET_NR_truncate64, "truncate64" , NULL, print_truncate64, NULL },
155533189d31Sths#endif
155633189d31Sths#ifdef TARGET_NR_tuxcall
155733189d31Sths{ TARGET_NR_tuxcall, "tuxcall" , NULL, NULL, NULL },
155833189d31Sths#endif
155933189d31Sths#ifdef TARGET_NR_ugetrlimit
156033189d31Sths{ TARGET_NR_ugetrlimit, "ugetrlimit" , NULL, NULL, NULL },
156133189d31Sths#endif
156233189d31Sths#ifdef TARGET_NR_ulimit
156333189d31Sths{ TARGET_NR_ulimit, "ulimit" , NULL, NULL, NULL },
156433189d31Sths#endif
156533189d31Sths#ifdef TARGET_NR_umask
156633189d31Sths{ TARGET_NR_umask, "umask" , "%s(%#o)", NULL, NULL },
156733189d31Sths#endif
156833189d31Sths#ifdef TARGET_NR_umount
156974d753acSMika Westerberg{ TARGET_NR_umount, "umount" , NULL, print_umount, NULL },
157033189d31Sths#endif
157133189d31Sths#ifdef TARGET_NR_umount2
157274d753acSMika Westerberg{ TARGET_NR_umount2, "umount2" , NULL, print_umount2, NULL },
157333189d31Sths#endif
157433189d31Sths#ifdef TARGET_NR_uname
157533189d31Sths{ TARGET_NR_uname, "uname" , "%s(%p)", NULL, NULL },
157633189d31Sths#endif
157733189d31Sths#ifdef TARGET_NR_unlink
157874d753acSMika Westerberg{ TARGET_NR_unlink, "unlink" , NULL, print_unlink, NULL },
157933189d31Sths#endif
158033189d31Sths#ifdef TARGET_NR_unlinkat
158174d753acSMika Westerberg{ TARGET_NR_unlinkat, "unlinkat" , NULL, print_unlinkat, NULL },
158233189d31Sths#endif
158333189d31Sths#ifdef TARGET_NR_unshare
15845847d309SMatus Kysel{ TARGET_NR_unshare, "unshare" , NULL, print_unshare, NULL },
158533189d31Sths#endif
1586fea55615SAleksandar Markovic#ifdef TARGET_NR_userfaultfd
1587fea55615SAleksandar Markovic{ TARGET_NR_userfaultfd, "userfaultfd" , NULL, NULL, NULL },
1588fea55615SAleksandar Markovic#endif
158933189d31Sths#ifdef TARGET_NR_unused109
159033189d31Sths{ TARGET_NR_unused109, "unused109" , NULL, NULL, NULL },
159133189d31Sths#endif
159233189d31Sths#ifdef TARGET_NR_unused150
159333189d31Sths{ TARGET_NR_unused150, "unused150" , NULL, NULL, NULL },
159433189d31Sths#endif
159533189d31Sths#ifdef TARGET_NR_unused18
159633189d31Sths{ TARGET_NR_unused18, "unused18" , NULL, NULL, NULL },
159733189d31Sths#endif
159833189d31Sths#ifdef TARGET_NR_unused28
159933189d31Sths{ TARGET_NR_unused28, "unused28" , NULL, NULL, NULL },
160033189d31Sths#endif
160133189d31Sths#ifdef TARGET_NR_unused59
160233189d31Sths{ TARGET_NR_unused59, "unused59" , NULL, NULL, NULL },
160333189d31Sths#endif
160433189d31Sths#ifdef TARGET_NR_unused84
160533189d31Sths{ TARGET_NR_unused84, "unused84" , NULL, NULL, NULL },
160633189d31Sths#endif
160733189d31Sths#ifdef TARGET_NR_uselib
160833189d31Sths{ TARGET_NR_uselib, "uselib" , NULL, NULL, NULL },
160933189d31Sths#endif
161033189d31Sths#ifdef TARGET_NR_ustat
161133189d31Sths{ TARGET_NR_ustat, "ustat" , "%s(%#x,%p)", NULL, NULL },
161233189d31Sths#endif
161333189d31Sths#ifdef TARGET_NR_utime
161474d753acSMika Westerberg{ TARGET_NR_utime, "utime" , NULL, print_utime, NULL },
161533189d31Sths#endif
161633189d31Sths#ifdef TARGET_NR_utimes
161774d753acSMika Westerberg{ TARGET_NR_utimes, "utimes" , NULL, print_utimes, NULL },
161833189d31Sths#endif
161933189d31Sths#ifdef TARGET_NR_utrap_install
162033189d31Sths{ TARGET_NR_utrap_install, "utrap_install" , NULL, NULL, NULL },
162133189d31Sths#endif
162233189d31Sths#ifdef TARGET_NR_vfork
162333189d31Sths{ TARGET_NR_vfork, "vfork" , NULL, NULL, NULL },
162433189d31Sths#endif
162533189d31Sths#ifdef TARGET_NR_vhangup
162633189d31Sths{ TARGET_NR_vhangup, "vhangup" , NULL, NULL, NULL },
162733189d31Sths#endif
162833189d31Sths#ifdef TARGET_NR_vm86
162933189d31Sths{ TARGET_NR_vm86, "vm86" , NULL, NULL, NULL },
163033189d31Sths#endif
163133189d31Sths#ifdef TARGET_NR_vm86old
163233189d31Sths{ TARGET_NR_vm86old, "vm86old" , NULL, NULL, NULL },
163333189d31Sths#endif
163433189d31Sths#ifdef TARGET_NR_vmsplice
163533189d31Sths{ TARGET_NR_vmsplice, "vmsplice" , NULL, NULL, NULL },
163633189d31Sths#endif
163733189d31Sths#ifdef TARGET_NR_vserver
163833189d31Sths{ TARGET_NR_vserver, "vserver" , NULL, NULL, NULL },
163933189d31Sths#endif
164033189d31Sths#ifdef TARGET_NR_wait4
164133189d31Sths{ TARGET_NR_wait4, "wait4" , NULL, NULL, NULL },
164233189d31Sths#endif
164333189d31Sths#ifdef TARGET_NR_waitid
164433189d31Sths{ TARGET_NR_waitid, "waitid" , "%s(%#x,%d,%p,%#x)", NULL, NULL },
164533189d31Sths#endif
164633189d31Sths#ifdef TARGET_NR_waitpid
164733189d31Sths{ TARGET_NR_waitpid, "waitpid" , "%s(%d,%p,%#x)", NULL, NULL },
164833189d31Sths#endif
164933189d31Sths#ifdef TARGET_NR_write
165033189d31Sths{ TARGET_NR_write, "write" , "%s(%d,%#x,%d)", NULL, NULL },
165133189d31Sths#endif
165233189d31Sths#ifdef TARGET_NR_writev
165333189d31Sths{ TARGET_NR_writev, "writev" , "%s(%d,%p,%#x)", NULL, NULL },
165433189d31Sths#endif
165533189d31Sths#ifdef TARGET_NR_utimensat
165674d753acSMika Westerberg{ TARGET_NR_utimensat, "utimensat", NULL, print_utimensat, NULL },
165733189d31Sths#endif
1658c727f47dSPeter Maydell#ifdef TARGET_NR_sync_file_range
1659c727f47dSPeter Maydell{ TARGET_NR_sync_file_range, "sync_file_range", NULL, NULL, NULL },
1660c727f47dSPeter Maydell#endif
1661c727f47dSPeter Maydell#ifdef TARGET_NR_sync_file_range2
1662c727f47dSPeter Maydell{ TARGET_NR_sync_file_range2, "sync_file_range2", NULL, NULL, NULL },
1663c727f47dSPeter Maydell#endif
1664e7ea6cbeSRichard Henderson#ifdef TARGET_NR_pipe2
1665e7ea6cbeSRichard Henderson{ TARGET_NR_pipe2, "pipe2", NULL, NULL, NULL },
1666e7ea6cbeSRichard Henderson#endif
166789aaf1a6SRiku Voipio#ifdef TARGET_NR_atomic_cmpxchg_32
166889aaf1a6SRiku Voipio{ TARGET_NR_atomic_cmpxchg_32, "atomic_cmpxchg_32", NULL, NULL, NULL },
166989aaf1a6SRiku Voipio#endif
167089aaf1a6SRiku Voipio#ifdef TARGET_NR_atomic_barrier
167189aaf1a6SRiku Voipio{ TARGET_NR_atomic_barrier, "atomic_barrier", NULL, NULL, NULL },
167289aaf1a6SRiku Voipio#endif
1673d42744feSJim Wilson#ifdef TARGET_NR_statx
1674d42744feSJim Wilson{ TARGET_NR_statx, "statx", NULL, print_statx, NULL },
1675d42744feSJim Wilson#endif
1676db322145SGiuseppe Musacchio#ifdef TARGET_NR_copy_file_range
1677db322145SGiuseppe Musacchio{ TARGET_NR_copy_file_range, "copy_file_range", "%s(%d,%p,%d,%p,"TARGET_ABI_FMT_lu",%u)", NULL, NULL },
1678db322145SGiuseppe Musacchio#endif
1679