-
Notifications
You must be signed in to change notification settings - Fork 0
/
strace.list
1652 lines (1652 loc) · 50.7 KB
/
strace.list
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Note that if you change format strings in these, check also
* that corresponding print functions are able to handle string
* locking correctly (see strace.c).
*/
#ifdef TARGET_NR_accept
{ TARGET_NR_accept, "accept" , NULL, print_accept, NULL },
#endif
#ifdef TARGET_NR_accept4
{ TARGET_NR_accept4, "accept4" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_access
{ TARGET_NR_access, "access" , NULL, print_access, NULL },
#endif
#ifdef TARGET_NR_acct
{ TARGET_NR_acct, "acct" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_add_key
{ TARGET_NR_add_key, "add_key" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_adjtimex
{ TARGET_NR_adjtimex, "adjtimex" , "%s(%p)", NULL,
print_syscall_ret_adjtimex },
#endif
#ifdef TARGET_NR_afs_syscall
{ TARGET_NR_afs_syscall, "afs_syscall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_alarm
{ TARGET_NR_alarm, "alarm" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_aplib
{ TARGET_NR_aplib, "aplib" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_arch_prctl
{ TARGET_NR_arch_prctl, "arch_prctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_arm_fadvise64_64
{ TARGET_NR_arm_fadvise64_64, "arm_fadvise64_64" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_bdflush
{ TARGET_NR_bdflush, "bdflush" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_bind
{ TARGET_NR_bind, "bind" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_bpf
{ TARGET_NR_bpf, "bpf" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_break
{ TARGET_NR_break, "break" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_brk
{ TARGET_NR_brk, "brk" , NULL, print_brk, print_syscall_ret_addr },
#endif
#ifdef TARGET_NR_cachectl
{ TARGET_NR_cachectl, "cachectl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_cacheflush
{ TARGET_NR_cacheflush, "cacheflush" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_capget
{ TARGET_NR_capget, "capget" , "%s(%p,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_capset
{ TARGET_NR_capset, "capset" , "%s(%p,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_chdir
{ TARGET_NR_chdir, "chdir" , NULL, print_chdir, NULL },
#endif
#ifdef TARGET_NR_chmod
{ TARGET_NR_chmod, "chmod" , NULL, print_chmod, NULL },
#endif
#ifdef TARGET_NR_chown
{ TARGET_NR_chown, "chown" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_chown32
{ TARGET_NR_chown32, "chown32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_chroot
{ TARGET_NR_chroot, "chroot" , NULL, print_chroot, NULL },
#endif
#ifdef TARGET_NR_clock_adjtime
{ TARGET_NR_clock_adjtime, "clock_adjtime" , NULL, print_clock_adjtime, NULL },
#endif
#ifdef TARGET_NR_clock_getres
{ TARGET_NR_clock_getres, "clock_getres" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_clock_gettime
{ TARGET_NR_clock_gettime, "clock_gettime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_clock_nanosleep
{ TARGET_NR_clock_nanosleep, "clock_nanosleep" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_clock_settime
{ TARGET_NR_clock_settime, "clock_settime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_clone
{ TARGET_NR_clone, "clone" , NULL, print_clone, NULL },
#endif
#ifdef TARGET_NR_close
{ TARGET_NR_close, "close" , "%s(%d)", NULL, NULL },
#endif
#ifdef TARGET_NR_connect
{ TARGET_NR_connect, "connect" , "%s(%d,%#x,%d)", NULL, NULL },
#endif
#ifdef TARGET_NR_creat
{ TARGET_NR_creat, "creat" , NULL, print_creat, NULL },
#endif
#ifdef TARGET_NR_create_module
{ TARGET_NR_create_module, "create_module" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_delete_module
{ TARGET_NR_delete_module, "delete_module" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_dipc
{ TARGET_NR_dipc, "dipc" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_dup
{ TARGET_NR_dup, "dup" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_dup2
{ TARGET_NR_dup2, "dup2" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_epoll_create
{ TARGET_NR_epoll_create, "epoll_create" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_epoll_create1
{ TARGET_NR_epoll_create1, "epoll_create1" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_epoll_ctl
{ TARGET_NR_epoll_ctl, "epoll_ctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_epoll_ctl_old
{ TARGET_NR_epoll_ctl_old, "epoll_ctl_old" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_epoll_pwait
{ TARGET_NR_epoll_pwait, "epoll_pwait" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_epoll_wait
{ TARGET_NR_epoll_wait, "epoll_wait" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_epoll_wait_old
{ TARGET_NR_epoll_wait_old, "epoll_wait_old" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_eventfd
{ TARGET_NR_eventfd, "eventfd" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_eventfd2
{ TARGET_NR_eventfd2, "eventfd2" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_execv
{ TARGET_NR_execv, "execv" , NULL, print_execv, NULL },
#endif
#ifdef TARGET_NR_execve
{ TARGET_NR_execve, "execve" , NULL, print_execve, NULL },
#endif
#ifdef TARGET_NR_execveat
{ TARGET_NR_execveat, "execveat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_exec_with_loader
{ TARGET_NR_exec_with_loader, "exec_with_loader" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_exit
{ TARGET_NR_exit, "exit" , "%s(%d)\n", NULL, NULL },
#endif
#ifdef TARGET_NR__exit
{ TARGET_NR__exit, "_exit" , "%s(%d)\n", NULL, NULL },
#endif
#ifdef TARGET_NR_exit_group
{ TARGET_NR_exit_group, "exit_group" , "%s(%d)\n", NULL, NULL },
#endif
#ifdef TARGET_NR_faccessat
{ TARGET_NR_faccessat, "faccessat" , NULL, print_faccessat, NULL },
#endif
#ifdef TARGET_NR_fadvise64
{ TARGET_NR_fadvise64, "fadvise64" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fadvise64_64
{ TARGET_NR_fadvise64_64, "fadvise64_64" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fallocate
{ TARGET_NR_fallocate, "fallocate" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fanotify_init
{ TARGET_NR_fanotify_init, "fanotify_init" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fanotify_mark
{ TARGET_NR_fanotify_mark, "fanotify_mark" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fchdir
{ TARGET_NR_fchdir, "fchdir" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fchmod
{ TARGET_NR_fchmod, "fchmod" , "%s(%d,%#o)", NULL, NULL },
#endif
#ifdef TARGET_NR_fchmodat
{ TARGET_NR_fchmodat, "fchmodat" , NULL, print_fchmodat, NULL },
#endif
#ifdef TARGET_NR_fchown
{ TARGET_NR_fchown, "fchown" , "%s(%d,%d,%d)", NULL, NULL },
#endif
#ifdef TARGET_NR_fchown32
{ TARGET_NR_fchown32, "fchown32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fchownat
{ TARGET_NR_fchownat, "fchownat" , NULL, print_fchownat, NULL },
#endif
#ifdef TARGET_NR_fcntl
{ TARGET_NR_fcntl, "fcntl" , NULL, print_fcntl, NULL },
#endif
#ifdef TARGET_NR_fcntl64
{ TARGET_NR_fcntl64, "fcntl64" , NULL, print_fcntl64, NULL },
#endif
#ifdef TARGET_NR_fdatasync
{ TARGET_NR_fdatasync, "fdatasync" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fgetxattr
{ TARGET_NR_fgetxattr, "fgetxattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_finit_module
{ TARGET_NR_finit_module, "finit_module" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_flistxattr
{ TARGET_NR_flistxattr, "flistxattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_flock
{ TARGET_NR_flock, "flock" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fork
{ TARGET_NR_fork, "fork" , "%s()", NULL, NULL },
#endif
#ifdef TARGET_NR_fremovexattr
{ TARGET_NR_fremovexattr, "fremovexattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fsetxattr
{ TARGET_NR_fsetxattr, "fsetxattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fstat
{ TARGET_NR_fstat, "fstat" , NULL, print_fstat, NULL },
#endif
#ifdef TARGET_NR_fstat64
{ TARGET_NR_fstat64, "fstat64" , NULL, print_fstat64, NULL },
#endif
#ifdef TARGET_NR_fstatfs
{ TARGET_NR_fstatfs, "fstatfs" , "%s(%d,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_fstatfs64
{ TARGET_NR_fstatfs64, "fstatfs64" , "%s(%d,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_fsync
{ TARGET_NR_fsync, "fsync" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_ftime
{ TARGET_NR_ftime, "ftime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_ftruncate
{ TARGET_NR_ftruncate, "ftruncate" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_ftruncate64
{ TARGET_NR_ftruncate64, "ftruncate64" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_futex
{ TARGET_NR_futex, "futex" , NULL, print_futex, NULL },
#endif
#ifdef TARGET_NR_futimesat
{ TARGET_NR_futimesat, "futimesat" , NULL, print_futimesat, NULL },
#endif
#ifdef TARGET_NR_getcpu
{ TARGET_NR_getcpu, "getcpu" , "%s(%p,%d)", NULL, NULL },
#endif
#ifdef TARGET_NR_getcwd
{ TARGET_NR_getcwd, "getcwd" , "%s(%p,%d)", NULL, NULL },
#endif
#ifdef TARGET_NR_getdents
{ TARGET_NR_getdents, "getdents" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getdents64
{ TARGET_NR_getdents64, "getdents64" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getdomainname
{ TARGET_NR_getdomainname, "getdomainname" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getdtablesize
{ TARGET_NR_getdtablesize, "getdtablesize" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getegid
{ TARGET_NR_getegid, "getegid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getegid32
{ TARGET_NR_getegid32, "getegid32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_geteuid
{ TARGET_NR_geteuid, "geteuid" , "%s()", NULL, NULL },
#endif
#ifdef TARGET_NR_geteuid32
{ TARGET_NR_geteuid32, "geteuid32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getgid
{ TARGET_NR_getgid, "getgid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getgid32
{ TARGET_NR_getgid32, "getgid32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getgroups
{ TARGET_NR_getgroups, "getgroups" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getgroups32
{ TARGET_NR_getgroups32, "getgroups32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_gethostname
{ TARGET_NR_gethostname, "gethostname" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getitimer
{ TARGET_NR_getitimer, "getitimer" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_get_kernel_syms
{ TARGET_NR_get_kernel_syms, "get_kernel_syms" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_get_mempolicy
{ TARGET_NR_get_mempolicy, "get_mempolicy" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getpagesize
{ TARGET_NR_getpagesize, "getpagesize" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getpeername
{ TARGET_NR_getpeername, "getpeername" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getpgid
{ TARGET_NR_getpgid, "getpgid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getpgrp
{ TARGET_NR_getpgrp, "getpgrp" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getpid
{ TARGET_NR_getpid, "getpid" , "%s()", NULL, NULL },
#endif
#ifdef TARGET_NR_getpmsg
{ TARGET_NR_getpmsg, "getpmsg" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getppid
{ TARGET_NR_getppid, "getppid" , "%s()", NULL, NULL },
#endif
#ifdef TARGET_NR_getpriority
{ TARGET_NR_getpriority, "getpriority", "%s(%#x,%#x)", NULL, NULL },
#endif
#ifdef TARGET_NR_getrandom
{ TARGET_NR_getrandom, "getrandom", NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getresgid
{ TARGET_NR_getresgid, "getresgid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getresgid32
{ TARGET_NR_getresgid32, "getresgid32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getresuid
{ TARGET_NR_getresuid, "getresuid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getresuid32
{ TARGET_NR_getresuid32, "getresuid32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getrlimit
{ TARGET_NR_getrlimit, "getrlimit" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_get_robust_list
{ TARGET_NR_get_robust_list, "get_robust_list" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getrusage
{ TARGET_NR_getrusage, "getrusage" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getsid
{ TARGET_NR_getsid, "getsid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getsockname
{ TARGET_NR_getsockname, "getsockname" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getsockopt
{ TARGET_NR_getsockopt, "getsockopt" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_get_thread_area
{ TARGET_NR_get_thread_area, "get_thread_area", "%s(0x"TARGET_ABI_FMT_lx")",
NULL, NULL },
#endif
#ifdef TARGET_NR_gettid
{ TARGET_NR_gettid, "gettid" , "%s()", NULL, NULL },
#endif
#ifdef TARGET_NR_gettimeofday
{ TARGET_NR_gettimeofday, "gettimeofday" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getuid
{ TARGET_NR_getuid, "getuid" , "%s()", NULL, NULL },
#endif
#ifdef TARGET_NR_getuid32
{ TARGET_NR_getuid32, "getuid32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getxattr
{ TARGET_NR_getxattr, "getxattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getxgid
{ TARGET_NR_getxgid, "getxgid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getxpid
{ TARGET_NR_getxpid, "getxpid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_getxuid
{ TARGET_NR_getxuid, "getxuid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_gtty
{ TARGET_NR_gtty, "gtty" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_idle
{ TARGET_NR_idle, "idle" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_init_module
{ TARGET_NR_init_module, "init_module" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_inotify_add_watch
{ TARGET_NR_inotify_add_watch, "inotify_add_watch" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_inotify_init
{ TARGET_NR_inotify_init, "inotify_init" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_inotify_init1
{ TARGET_NR_inotify_init1, "inotify_init1" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_inotify_rm_watch
{ TARGET_NR_inotify_rm_watch, "inotify_rm_watch" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_io_cancel
{ TARGET_NR_io_cancel, "io_cancel" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_ioctl
{ TARGET_NR_ioctl, "ioctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_io_destroy
{ TARGET_NR_io_destroy, "io_destroy" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_io_getevents
{ TARGET_NR_io_getevents, "io_getevents" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_ioperm
{ TARGET_NR_ioperm, "ioperm" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_iopl
{ TARGET_NR_iopl, "iopl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_ioprio_get
{ TARGET_NR_ioprio_get, "ioprio_get" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_ioprio_set
{ TARGET_NR_ioprio_set, "ioprio_set" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_io_setup
{ TARGET_NR_io_setup, "io_setup" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_io_submit
{ TARGET_NR_io_submit, "io_submit" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_ipc
{ TARGET_NR_ipc, "ipc" , NULL, print_ipc, NULL },
#endif
#ifdef TARGET_NR_kcmp
{ TARGET_NR_kcmp, "kcmp" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_kexec_load
{ TARGET_NR_kexec_load, "kexec_load" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_keyctl
{ TARGET_NR_keyctl, "keyctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_kill
{ TARGET_NR_kill, "kill", NULL, print_kill, NULL },
#endif
#ifdef TARGET_NR_lchown
{ TARGET_NR_lchown, "lchown" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_lchown32
{ TARGET_NR_lchown32, "lchown32" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_lgetxattr
{ TARGET_NR_lgetxattr, "lgetxattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_link
{ TARGET_NR_link, "link" , NULL, print_link, NULL },
#endif
#ifdef TARGET_NR_linkat
{ TARGET_NR_linkat, "linkat" , NULL, print_linkat, NULL },
#endif
#ifdef TARGET_NR_Linux
{ TARGET_NR_Linux, "Linux" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_listen
{ TARGET_NR_listen, "listen" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_listxattr
{ TARGET_NR_listxattr, "listxattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_llistxattr
{ TARGET_NR_llistxattr, "llistxattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR__llseek
{ TARGET_NR__llseek, "_llseek" , NULL, print__llseek, NULL },
#endif
#ifdef TARGET_NR_lock
{ TARGET_NR_lock, "lock" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_lookup_dcookie
{ TARGET_NR_lookup_dcookie, "lookup_dcookie" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_lremovexattr
{ TARGET_NR_lremovexattr, "lremovexattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_lseek
{ TARGET_NR_lseek, "lseek" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_lsetxattr
{ TARGET_NR_lsetxattr, "lsetxattr" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_lstat
{ TARGET_NR_lstat, "lstat" , NULL, print_lstat, NULL },
#endif
#ifdef TARGET_NR_lstat64
{ TARGET_NR_lstat64, "lstat64" , NULL, print_lstat64, NULL },
#endif
#ifdef TARGET_NR_madvise
{ TARGET_NR_madvise, "madvise" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_madvise1
{ TARGET_NR_madvise1, "madvise1" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mbind
{ TARGET_NR_mbind, "mbind" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_membarrier
{ TARGET_NR_membarrier, "membarrier" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_memfd_create
{ TARGET_NR_memfd_create, "memfd_create" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_memory_ordering
{ TARGET_NR_memory_ordering, "memory_ordering" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_migrate_pages
{ TARGET_NR_migrate_pages, "migrate_pages" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mincore
{ TARGET_NR_mincore, "mincore" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mkdir
{ TARGET_NR_mkdir, "mkdir" , NULL, print_mkdir, NULL },
#endif
#ifdef TARGET_NR_mkdirat
{ TARGET_NR_mkdirat, "mkdirat" , NULL, print_mkdirat, NULL },
#endif
#ifdef TARGET_NR_rmdir
{ TARGET_NR_rmdir, "rmdir" , NULL, print_rmdir, NULL },
#endif
#ifdef TARGET_NR_mknod
{ TARGET_NR_mknod, "mknod" , NULL, print_mknod, NULL },
#endif
#ifdef TARGET_NR_mknodat
{ TARGET_NR_mknodat, "mknodat" , NULL, print_mknodat, NULL },
#endif
#ifdef TARGET_NR_mlock
{ TARGET_NR_mlock, "mlock" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mlock2
{ TARGET_NR_mlock2, "mlock2" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mlockall
{ TARGET_NR_mlockall, "mlockall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mmap
{ TARGET_NR_mmap, "mmap" , NULL, print_mmap, print_syscall_ret_addr },
#endif
#ifdef TARGET_NR_mmap2
{ TARGET_NR_mmap2, "mmap2" , NULL, print_mmap2, print_syscall_ret_addr },
#endif
#ifdef TARGET_NR_modify_ldt
{ TARGET_NR_modify_ldt, "modify_ldt" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mount
{ TARGET_NR_mount, "mount" , NULL, print_mount, NULL },
#endif
#ifdef TARGET_NR_move_pages
{ TARGET_NR_move_pages, "move_pages" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mprotect
{ TARGET_NR_mprotect, "mprotect" , NULL, print_mprotect, NULL },
#endif
#ifdef TARGET_NR_mpx
{ TARGET_NR_mpx, "mpx" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_mq_getsetattr
{ TARGET_NR_mq_getsetattr, "mq_getsetattr" , "%s(%d,%p,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_mq_notify
{ TARGET_NR_mq_notify, "mq_notify" , "%s(%d,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_mq_open
{ TARGET_NR_mq_open, "mq_open" , NULL, print_mq_open, NULL },
#endif
#ifdef TARGET_NR_mq_timedreceive
{ TARGET_NR_mq_timedreceive, "mq_timedreceive" , "%s(%d,%p,%d,%u,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_mq_timedsend
{ TARGET_NR_mq_timedsend, "mq_timedsend" , "%s(%d,%p,%d,%u,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_mq_unlink
{ TARGET_NR_mq_unlink, "mq_unlink" , NULL, print_mq_unlink, NULL },
#endif
#ifdef TARGET_NR_mremap
{ TARGET_NR_mremap, "mremap" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_msgctl
{ TARGET_NR_msgctl, "msgctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_msgget
{ TARGET_NR_msgget, "msgget" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_msgrcv
{ TARGET_NR_msgrcv, "msgrcv" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_msgsnd
{ TARGET_NR_msgsnd, "msgsnd" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_msync
{ TARGET_NR_msync, "msync" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_multiplexer
{ TARGET_NR_multiplexer, "multiplexer" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_munlock
{ TARGET_NR_munlock, "munlock" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_munlockall
{ TARGET_NR_munlockall, "munlockall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_munmap
{ TARGET_NR_munmap, "munmap" , NULL, print_munmap, NULL },
#endif
#ifdef TARGET_NR_name_to_handle_at
{ TARGET_NR_name_to_handle_at, "name_to_handle_at" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_nanosleep
{ TARGET_NR_nanosleep, "nanosleep" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_fstatat64
{ TARGET_NR_fstatat64, "fstatat64" , NULL, print_fstatat64, NULL },
#endif
#ifdef TARGET_NR_newfstatat
{ TARGET_NR_newfstatat, "newfstatat" , NULL, print_newfstatat, NULL },
#endif
#ifdef TARGET_NR__newselect
{ TARGET_NR__newselect, "_newselect" , NULL, print_newselect, print_syscall_ret_newselect },
#endif
#ifdef TARGET_NR_nfsservctl
{ TARGET_NR_nfsservctl, "nfsservctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_nice
{ TARGET_NR_nice, "nice" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_old_adjtimex
{ TARGET_NR_old_adjtimex, "old_adjtimex" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_oldfstat
{ TARGET_NR_oldfstat, "oldfstat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_oldlstat
{ TARGET_NR_oldlstat, "oldlstat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_oldolduname
{ TARGET_NR_oldolduname, "oldolduname" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_oldstat
{ TARGET_NR_oldstat, "oldstat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_olduname
{ TARGET_NR_olduname, "olduname" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_open
{ TARGET_NR_open, "open" , NULL, print_open, NULL },
#endif
#ifdef TARGET_NR_openat
{ TARGET_NR_openat, "openat" , NULL, print_openat, NULL },
#endif
#ifdef TARGET_NR_osf_adjtime
{ TARGET_NR_osf_adjtime, "osf_adjtime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_afs_syscall
{ TARGET_NR_osf_afs_syscall, "osf_afs_syscall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_alt_plock
{ TARGET_NR_osf_alt_plock, "osf_alt_plock" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_alt_setsid
{ TARGET_NR_osf_alt_setsid, "osf_alt_setsid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_alt_sigpending
{ TARGET_NR_osf_alt_sigpending, "osf_alt_sigpending" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_asynch_daemon
{ TARGET_NR_osf_asynch_daemon, "osf_asynch_daemon" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_audcntl
{ TARGET_NR_osf_audcntl, "osf_audcntl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_audgen
{ TARGET_NR_osf_audgen, "osf_audgen" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_chflags
{ TARGET_NR_osf_chflags, "osf_chflags" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_execve
{ TARGET_NR_osf_execve, "osf_execve" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_exportfs
{ TARGET_NR_osf_exportfs, "osf_exportfs" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_fchflags
{ TARGET_NR_osf_fchflags, "osf_fchflags" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_fdatasync
{ TARGET_NR_osf_fdatasync, "osf_fdatasync" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_fpathconf
{ TARGET_NR_osf_fpathconf, "osf_fpathconf" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_fstatfs
{ TARGET_NR_osf_fstatfs, "osf_fstatfs" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_fuser
{ TARGET_NR_osf_fuser, "osf_fuser" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getaddressconf
{ TARGET_NR_osf_getaddressconf, "osf_getaddressconf" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getdirentries
{ TARGET_NR_osf_getdirentries, "osf_getdirentries" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getdomainname
{ TARGET_NR_osf_getdomainname, "osf_getdomainname" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getfh
{ TARGET_NR_osf_getfh, "osf_getfh" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getfsstat
{ TARGET_NR_osf_getfsstat, "osf_getfsstat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_gethostid
{ TARGET_NR_osf_gethostid, "osf_gethostid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getitimer
{ TARGET_NR_osf_getitimer, "osf_getitimer" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getlogin
{ TARGET_NR_osf_getlogin, "osf_getlogin" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getmnt
{ TARGET_NR_osf_getmnt, "osf_getmnt" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getrusage
{ TARGET_NR_osf_getrusage, "osf_getrusage" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_getsysinfo
{ TARGET_NR_osf_getsysinfo, "osf_getsysinfo" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_gettimeofday
{ TARGET_NR_osf_gettimeofday, "osf_gettimeofday" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_kloadcall
{ TARGET_NR_osf_kloadcall, "osf_kloadcall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_kmodcall
{ TARGET_NR_osf_kmodcall, "osf_kmodcall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_memcntl
{ TARGET_NR_osf_memcntl, "osf_memcntl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_mincore
{ TARGET_NR_osf_mincore, "osf_mincore" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_mount
{ TARGET_NR_osf_mount, "osf_mount" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_mremap
{ TARGET_NR_osf_mremap, "osf_mremap" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_msfs_syscall
{ TARGET_NR_osf_msfs_syscall, "osf_msfs_syscall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_msleep
{ TARGET_NR_osf_msleep, "osf_msleep" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_mvalid
{ TARGET_NR_osf_mvalid, "osf_mvalid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_mwakeup
{ TARGET_NR_osf_mwakeup, "osf_mwakeup" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_naccept
{ TARGET_NR_osf_naccept, "osf_naccept" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_nfssvc
{ TARGET_NR_osf_nfssvc, "osf_nfssvc" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_ngetpeername
{ TARGET_NR_osf_ngetpeername, "osf_ngetpeername" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_ngetsockname
{ TARGET_NR_osf_ngetsockname, "osf_ngetsockname" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_nrecvfrom
{ TARGET_NR_osf_nrecvfrom, "osf_nrecvfrom" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_nrecvmsg
{ TARGET_NR_osf_nrecvmsg, "osf_nrecvmsg" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_nsendmsg
{ TARGET_NR_osf_nsendmsg, "osf_nsendmsg" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_ntp_adjtime
{ TARGET_NR_osf_ntp_adjtime, "osf_ntp_adjtime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_ntp_gettime
{ TARGET_NR_osf_ntp_gettime, "osf_ntp_gettime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_creat
{ TARGET_NR_osf_old_creat, "osf_old_creat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_fstat
{ TARGET_NR_osf_old_fstat, "osf_old_fstat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_getpgrp
{ TARGET_NR_osf_old_getpgrp, "osf_old_getpgrp" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_killpg
{ TARGET_NR_osf_old_killpg, "osf_old_killpg" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_lstat
{ TARGET_NR_osf_old_lstat, "osf_old_lstat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_open
{ TARGET_NR_osf_old_open, "osf_old_open" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_oldquota
{ TARGET_NR_osf_oldquota, "osf_oldquota" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_sigaction
{ TARGET_NR_osf_old_sigaction, "osf_old_sigaction" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_sigblock
{ TARGET_NR_osf_old_sigblock, "osf_old_sigblock" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_sigreturn
{ TARGET_NR_osf_old_sigreturn, "osf_old_sigreturn" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_sigsetmask
{ TARGET_NR_osf_old_sigsetmask, "osf_old_sigsetmask" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_sigvec
{ TARGET_NR_osf_old_sigvec, "osf_old_sigvec" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_stat
{ TARGET_NR_osf_old_stat, "osf_old_stat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_vadvise
{ TARGET_NR_osf_old_vadvise, "osf_old_vadvise" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_vtrace
{ TARGET_NR_osf_old_vtrace, "osf_old_vtrace" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_old_wait
{ TARGET_NR_osf_old_wait, "osf_old_wait" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_pathconf
{ TARGET_NR_osf_pathconf, "osf_pathconf" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_pid_block
{ TARGET_NR_osf_pid_block, "osf_pid_block" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_pid_unblock
{ TARGET_NR_osf_pid_unblock, "osf_pid_unblock" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_plock
{ TARGET_NR_osf_plock, "osf_plock" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_priocntlset
{ TARGET_NR_osf_priocntlset, "osf_priocntlset" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_profil
{ TARGET_NR_osf_profil, "osf_profil" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_proplist_syscall
{ TARGET_NR_osf_proplist_syscall, "osf_proplist_syscall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_reboot
{ TARGET_NR_osf_reboot, "osf_reboot" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_revoke
{ TARGET_NR_osf_revoke, "osf_revoke" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_sbrk
{ TARGET_NR_osf_sbrk, "osf_sbrk" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_security
{ TARGET_NR_osf_security, "osf_security" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_select
{ TARGET_NR_osf_select, "osf_select" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_sethostid
{ TARGET_NR_osf_sethostid, "osf_sethostid" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_setitimer
{ TARGET_NR_osf_setitimer, "osf_setitimer" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_setlogin
{ TARGET_NR_osf_setlogin, "osf_setlogin" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_set_program_attributes
{ TARGET_NR_osf_set_program_attributes, "osf_set_program_attributes" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_set_speculative
{ TARGET_NR_osf_set_speculative, "osf_set_speculative" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_setsysinfo
{ TARGET_NR_osf_setsysinfo, "osf_setsysinfo" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_settimeofday
{ TARGET_NR_osf_settimeofday, "osf_settimeofday" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_shmat
{ TARGET_NR_osf_shmat, "osf_shmat" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_signal
{ TARGET_NR_osf_signal, "osf_signal" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_sigprocmask
{ TARGET_NR_osf_sigprocmask, "osf_sigprocmask" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_sigsendset
{ TARGET_NR_osf_sigsendset, "osf_sigsendset" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_sigstack
{ TARGET_NR_osf_sigstack, "osf_sigstack" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_sigwaitprim
{ TARGET_NR_osf_sigwaitprim, "osf_sigwaitprim" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_sstk
{ TARGET_NR_osf_sstk, "osf_sstk" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_statfs
{ TARGET_NR_osf_statfs, "osf_statfs" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_subsys_info
{ TARGET_NR_osf_subsys_info, "osf_subsys_info" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_swapctl
{ TARGET_NR_osf_swapctl, "osf_swapctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_swapon
{ TARGET_NR_osf_swapon, "osf_swapon" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_syscall
{ TARGET_NR_osf_syscall, "osf_syscall" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_sysinfo
{ TARGET_NR_osf_sysinfo, "osf_sysinfo" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_table
{ TARGET_NR_osf_table, "osf_table" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_uadmin
{ TARGET_NR_osf_uadmin, "osf_uadmin" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_usleep_thread
{ TARGET_NR_osf_usleep_thread, "osf_usleep_thread" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_uswitch
{ TARGET_NR_osf_uswitch, "osf_uswitch" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_utc_adjtime
{ TARGET_NR_osf_utc_adjtime, "osf_utc_adjtime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_utc_gettime
{ TARGET_NR_osf_utc_gettime, "osf_utc_gettime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_utimes
{ TARGET_NR_osf_utimes, "osf_utimes" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_utsname
{ TARGET_NR_osf_utsname, "osf_utsname" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_wait4
{ TARGET_NR_osf_wait4, "osf_wait4" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_osf_waitid
{ TARGET_NR_osf_waitid, "osf_waitid" , NULL, NULL, NULL },
#endif