• Home
  • Raw
  • Download

Lines Matching refs:define

73 #define PLAX_(const, name) \
75 #define PLAXY(const, name) \
100 # define VG_CLREQ_ARGS guest_R0
101 # define VG_CLREQ_RET guest_R0
107 # define VG_MIN_INSTR_SZB 4
108 # define VG_MAX_INSTR_SZB 4
109 # define VG_STACK_REDZONE_SZB 0
115 # define VG_REGPARM(n) /* */
121 # define VG_ELF_ENDIANNESS ELFDATA2LSB
122 # define VG_ELF_MACHINE EM_ARM
123 # define VG_ELF_CLASS ELFCLASS32
132 # define VG_INSTR_PTR guest_R15
133 # define VG_STACK_PTR guest_R13
134 # define VG_FRAME_PTR guest_R11
152 # define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.arm_pc)
153 # define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.arm_sp)
154 # define VG_UCONTEXT_FRAME_PTR(uc) ((uc)->uc_mcontext.arm_fp)
155 # define VG_UCONTEXT_SYSCALL_NUM(uc) ((uc)->uc_mcontext.arm_r0)
208 #define __VKI_POSIXTYPES_ARM_LINUX_H
279 #define __VKI_ARM_LINUX_H
282 #define VKI_LITTLE_ENDIAN 1
306 #define VKI_PAGE_SHIFT 12
307 #define VKI_PAGE_SIZE (1UL << VKI_PAGE_SHIFT)
313 #define _VKI_NSIG 64
314 #define _VKI_NSIG_BPW 32
315 #define _VKI_NSIG_WORDS (_VKI_NSIG / _VKI_NSIG_BPW)
323 #define VKI_SIGHUP 1
324 #define VKI_SIGINT 2
325 #define VKI_SIGQUIT 3
326 #define VKI_SIGILL 4
327 #define VKI_SIGTRAP 5
328 #define VKI_SIGABRT 6
329 //#define VKI_SIGIOT 6
330 #define VKI_SIGBUS 7
331 #define VKI_SIGFPE 8
332 #define VKI_SIGKILL 9
333 #define VKI_SIGUSR1 10
334 #define VKI_SIGSEGV 11
335 #define VKI_SIGUSR2 12
336 #define VKI_SIGPIPE 13
337 #define VKI_SIGALRM 14
338 #define VKI_SIGTERM 15
339 #define VKI_SIGSTKFLT 16
340 #define VKI_SIGCHLD 17
341 #define VKI_SIGCONT 18
342 #define VKI_SIGSTOP 19
343 #define VKI_SIGTSTP 20
344 #define VKI_SIGTTIN 21
345 #define VKI_SIGTTOU 22
346 #define VKI_SIGURG 23
347 #define VKI_SIGXCPU 24
348 #define VKI_SIGXFSZ 25
349 #define VKI_SIGVTALRM 26
350 #define VKI_SIGPROF 27
351 #define VKI_SIGWINCH 28
352 #define VKI_SIGIO 29
353 #define VKI_SIGPWR 30
354 #define VKI_SIGSYS 31
355 #define VKI_SIGUNUSED 31
358 #define VKI_SIGRTMIN 32
359 #define VKI_SIGRTMAX _VKI_NSIG
361 #define VKI_SIGSWI 32
363 #define VKI_SA_NOCLDSTOP 0x00000001
364 #define VKI_SA_NOCLDWAIT 0x00000002
365 #define VKI_SA_SIGINFO 0x00000004
366 //#define VKI_SA_THIRTYTWO 0x02000000
367 #define VKI_SA_RESTORER 0x04000000
368 #define VKI_SA_ONSTACK 0x08000000
369 #define VKI_SA_RESTART 0x10000000
370 #define VKI_SA_NODEFER 0x40000000
371 #define VKI_SA_RESETHAND 0x80000000
373 #define VKI_SA_NOMASK VKI_SA_NODEFER
374 #define VKI_SA_ONESHOT VKI_SA_RESETHAND
375 //#define VKI_SA_INTERRUPT 0x20000000 /* dummy -- ignored */
378 #define VKI_SS_ONSTACK 1
379 #define VKI_SS_DISABLE 2
381 #define VKI_MINSIGSTKSZ 2048
383 #define VKI_SIG_BLOCK 0 /* for blocking signals */
384 #define VKI_SIG_UNBLOCK 1 /* for unblocking signals */
385 #define VKI_SIG_SETMASK 2 /* for setting the signal mask */
394 #define VKI_SIG_DFL ((__vki_sighandler_t)0) /* default signal handling */
395 #define VKI_SIG_IGN ((__vki_sighandler_t)1) /* ignore signal */
454 #define VKI_PROT_READ 0x1 /* page can be read */
455 #define VKI_PROT_WRITE 0x2 /* page can be written */
456 #define VKI_PROT_EXEC 0x4 /* page can be executed */
457 //#define VKI_PROT_SEM 0x8 /* page may be used for atomic ops */
458 //#define VKI_PROT_NONE 0x0 /* page can not be accessed */
460 #define VKI_MAP_SHARED 0x01 /* Share changes */
461 #define VKI_MAP_PRIVATE 0x02 /* Changes are private */
462 #define VKI_MAP_TYPE 0x0f /* Mask for type of mapping */
463 #define VKI_MAP_FIXED 0x10 /* Interpret addr exactly */
464 #define VKI_MAP_ANONYMOUS 0x20 /* don't use a file */
470 #define VKI_O_RDONLY 00
471 #define VKI_O_WRONLY 01
472 #define VKI_O_CREAT 0100 /* not fcntl */
473 #define VKI_O_EXCL 0200 /* not fcntl */
474 #define VKI_O_TRUNC 01000 /* not fcntl */
475 #define VKI_O_NONBLOCK 04000
477 #define VKI_F_DUPFD 0 /* dup */
478 #define VKI_F_GETFD 1 /* get close_on_exec */
479 #define VKI_F_SETFD 2 /* set/clear close_on_exec */
480 #define VKI_F_GETFL 3 /* get file->f_flags */
481 #define VKI_F_SETFL 4 /* set file->f_flags */
482 #define VKI_F_GETLK 5
483 #define VKI_F_SETLK 6
484 #define VKI_F_SETLKW 7
486 #define VKI_F_SETOWN 8 /* for sockets. */
487 #define VKI_F_GETOWN 9 /* for sockets. */
488 #define VKI_F_SETSIG 10 /* for sockets. */
489 #define VKI_F_GETSIG 11 /* for sockets. */
491 #define VKI_F_GETLK64 12 /* using 'struct flock64' */
492 #define VKI_F_SETLK64 13
493 #define VKI_F_SETLKW64 14
496 #define VKI_FD_CLOEXEC 1 /* actually anything with low bit set goes */
498 #define VKI_F_LINUX_SPECIFIC_BASE 1024
504 #define VKI_RLIMIT_DATA 2 /* max data size */
505 #define VKI_RLIMIT_STACK 3 /* max stack size */
506 #define VKI_RLIMIT_CORE 4 /* max core file size */
507 #define VKI_RLIMIT_NOFILE 7 /* max number of open files */
513 #define VKI_SOL_SOCKET 1
515 #define VKI_SO_TYPE 3
521 #define VKI_SIOCSPGRP 0x8902
522 #define VKI_SIOCGPGRP 0x8904
523 #define VKI_SIOCGSTAMP 0x8906 /* Get stamp */
556 #define STAT64_HAS_BROKEN_ST_INO 1
615 #define VKI_NCC 8
632 #define VKI_NCCS 19
646 #define _VKI_IOC_NRBITS 8
647 #define _VKI_IOC_TYPEBITS 8
648 #define _VKI_IOC_SIZEBITS 14
649 #define _VKI_IOC_DIRBITS 2
651 #define _VKI_IOC_SIZEMASK ((1 << _VKI_IOC_SIZEBITS)-1)
652 #define _VKI_IOC_DIRMASK ((1 << _VKI_IOC_DIRBITS)-1)
654 #define _VKI_IOC_NRSHIFT 0
655 #define _VKI_IOC_TYPESHIFT (_VKI_IOC_NRSHIFT+_VKI_IOC_NRBITS)
656 #define _VKI_IOC_SIZESHIFT (_VKI_IOC_TYPESHIFT+_VKI_IOC_TYPEBITS)
657 #define _VKI_IOC_DIRSHIFT (_VKI_IOC_SIZESHIFT+_VKI_IOC_SIZEBITS)
659 #define _VKI_IOC_NONE 0U
660 #define _VKI_IOC_WRITE 1U
661 #define _VKI_IOC_READ 2U
663 #define _VKI_IOC(dir,type,nr,size) \
670 #define _VKI_IO(type,nr) _VKI_IOC(_VKI_IOC_NONE,(type),(nr),0)
671 #define _VKI_IOR(type,nr,size) _VKI_IOC(_VKI_IOC_READ,(type),(nr),sizeof(size))
672 #define _VKI_IOW(type,nr,size) _VKI_IOC(_VKI_IOC_WRITE,(type),(nr),sizeof(size))
673 #define _VKI_IOWR(type,nr,size) _VKI_IOC(_VKI_IOC_READ|_VKI_IOC_WRITE,(type),(nr),sizeof(size))
676 #define _VKI_IOC_DIR(nr) (((nr) >> _VKI_IOC_DIRSHIFT) & _VKI_IOC_DIRMASK)
677 #define _VKI_IOC_SIZE(nr) (((nr) >> _VKI_IOC_SIZESHIFT) & _VKI_IOC_SIZEMASK)
683 #define VKI_TCGETS 0x5401
684 #define VKI_TCSETS 0x5402
685 #define VKI_TCSETSW 0x5403
686 #define VKI_TCSETSF 0x5404
687 #define VKI_TCGETA 0x5405
688 #define VKI_TCSETA 0x5406
689 #define VKI_TCSETAW 0x5407
690 #define VKI_TCSETAF 0x5408
691 #define VKI_TCSBRK 0x5409
692 #define VKI_TCXONC 0x540A
693 #define VKI_TCFLSH 0x540B
694 #define VKI_TIOCSCTTY 0x540E
695 #define VKI_TIOCGPGRP 0x540F
696 #define VKI_TIOCSPGRP 0x5410
697 #define VKI_TIOCOUTQ 0x5411
698 #define VKI_TIOCGWINSZ 0x5413
699 #define VKI_TIOCSWINSZ 0x5414
700 #define VKI_TIOCMBIS 0x5416
701 #define VKI_TIOCMBIC 0x5417
702 #define VKI_TIOCMSET 0x5418
703 #define VKI_FIONREAD 0x541B
704 #define VKI_TIOCLINUX 0x541C
705 #define VKI_FIONBIO 0x5421
706 #define VKI_TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak() */
707 #define VKI_TIOCGPTN _VKI_IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */
708 #define VKI_TIOCSPTLCK _VKI_IOW('T',0x31, int) /* Lock/unlock Pty */
710 #define VKI_FIOASYNC 0x5452
716 #define VKI_POLLIN 0x0001
747 #define VKI_ELF_NGREG (sizeof (struct vki_pt_regs) / sizeof(vki_elf_greg_t))
899 #define __VKI_UNISTD_ARM_LINUX_H
905 #define __NR_SYSCALL_BASE 0x900000
907 #define __NR_restart_syscall (__NR_SYSCALL_BASE+ 0)
908 #define __NR_exit (__NR_SYSCALL_BASE+ 1)
909 #define __NR_fork (__NR_SYSCALL_BASE+ 2)
910 #define __NR_read (__NR_SYSCALL_BASE+ 3)
911 #define __NR_write (__NR_SYSCALL_BASE+ 4)
912 #define __NR_open (__NR_SYSCALL_BASE+ 5)
913 #define __NR_close (__NR_SYSCALL_BASE+ 6)
915 #define __NR_creat (__NR_SYSCALL_BASE+ 8)
916 #define __NR_link (__NR_SYSCALL_BASE+ 9)
917 #define __NR_unlink (__NR_SYSCALL_BASE+ 10)
918 #define __NR_execve (__NR_SYSCALL_BASE+ 11)
919 #define __NR_chdir (__NR_SYSCALL_BASE+ 12)
920 #define __NR_time (__NR_SYSCALL_BASE+ 13)
921 #define __NR_mknod (__NR_SYSCALL_BASE+ 14)
922 #define __NR_chmod (__NR_SYSCALL_BASE+ 15)
923 #define __NR_lchown (__NR_SYSCALL_BASE+ 16)
926 #define __NR_lseek (__NR_SYSCALL_BASE+ 19)
927 #define __NR_getpid (__NR_SYSCALL_BASE+ 20)
928 #define __NR_mount (__NR_SYSCALL_BASE+ 21)
929 #define __NR_umount (__NR_SYSCALL_BASE+ 22)
930 #define __NR_setuid (__NR_SYSCALL_BASE+ 23)
931 #define __NR_getuid (__NR_SYSCALL_BASE+ 24)
932 #define __NR_stime (__NR_SYSCALL_BASE+ 25)
933 #define __NR_ptrace (__NR_SYSCALL_BASE+ 26)
934 #define __NR_alarm (__NR_SYSCALL_BASE+ 27)
936 #define __NR_pause (__NR_SYSCALL_BASE+ 29)
937 #define __NR_utime (__NR_SYSCALL_BASE+ 30)
940 #define __NR_access (__NR_SYSCALL_BASE+ 33)
941 #define __NR_nice (__NR_SYSCALL_BASE+ 34)
943 #define __NR_sync (__NR_SYSCALL_BASE+ 36)
944 #define __NR_kill (__NR_SYSCALL_BASE+ 37)
945 #define __NR_rename (__NR_SYSCALL_BASE+ 38)
946 #define __NR_mkdir (__NR_SYSCALL_BASE+ 39)
947 #define __NR_rmdir (__NR_SYSCALL_BASE+ 40)
948 #define __NR_dup (__NR_SYSCALL_BASE+ 41)
949 #define __NR_pipe (__NR_SYSCALL_BASE+ 42)
950 #define __NR_times (__NR_SYSCALL_BASE+ 43)
952 #define __NR_brk (__NR_SYSCALL_BASE+ 45)
953 #define __NR_setgid (__NR_SYSCALL_BASE+ 46)
954 #define __NR_getgid (__NR_SYSCALL_BASE+ 47)
956 #define __NR_geteuid (__NR_SYSCALL_BASE+ 49)
957 #define __NR_getegid (__NR_SYSCALL_BASE+ 50)
958 #define __NR_acct (__NR_SYSCALL_BASE+ 51)
959 #define __NR_umount2 (__NR_SYSCALL_BASE+ 52)
961 #define __NR_ioctl (__NR_SYSCALL_BASE+ 54)
962 #define __NR_fcntl (__NR_SYSCALL_BASE+ 55)
964 #define __NR_setpgid (__NR_SYSCALL_BASE+ 57)
967 #define __NR_umask (__NR_SYSCALL_BASE+ 60)
968 #define __NR_chroot (__NR_SYSCALL_BASE+ 61)
969 #define __NR_ustat (__NR_SYSCALL_BASE+ 62)
970 #define __NR_dup2 (__NR_SYSCALL_BASE+ 63)
971 #define __NR_getppid (__NR_SYSCALL_BASE+ 64)
972 #define __NR_getpgrp (__NR_SYSCALL_BASE+ 65)
973 #define __NR_setsid (__NR_SYSCALL_BASE+ 66)
974 #define __NR_sigaction (__NR_SYSCALL_BASE+ 67)
977 #define __NR_setreuid (__NR_SYSCALL_BASE+ 70)
978 #define __NR_setregid (__NR_SYSCALL_BASE+ 71)
979 #define __NR_sigsuspend (__NR_SYSCALL_BASE+ 72)
980 #define __NR_sigpending (__NR_SYSCALL_BASE+ 73)
981 #define __NR_sethostname (__NR_SYSCALL_BASE+ 74)
982 #define __NR_setrlimit (__NR_SYSCALL_BASE+ 75)
983 #define __NR_getrlimit (__NR_SYSCALL_BASE+ 76) /* Back compat 2GB limited rlimit */
984 #define __NR_getrusage (__NR_SYSCALL_BASE+ 77)
985 #define __NR_gettimeofday (__NR_SYSCALL_BASE+ 78)
986 #define __NR_settimeofday (__NR_SYSCALL_BASE+ 79)
987 #define __NR_getgroups (__NR_SYSCALL_BASE+ 80)
988 #define __NR_setgroups (__NR_SYSCALL_BASE+ 81)
989 #define __NR_select (__NR_SYSCALL_BASE+ 82)
990 #define __NR_symlink (__NR_SYSCALL_BASE+ 83)
992 #define __NR_readlink (__NR_SYSCALL_BASE+ 85)
993 #define __NR_uselib (__NR_SYSCALL_BASE+ 86)
994 #define __NR_swapon (__NR_SYSCALL_BASE+ 87)
995 #define __NR_reboot (__NR_SYSCALL_BASE+ 88)
996 #define __NR_readdir (__NR_SYSCALL_BASE+ 89)
997 #define __NR_mmap (__NR_SYSCALL_BASE+ 90)
998 #define __NR_munmap (__NR_SYSCALL_BASE+ 91)
999 #define __NR_truncate (__NR_SYSCALL_BASE+ 92)
1000 #define __NR_ftruncate (__NR_SYSCALL_BASE+ 93)
1001 #define __NR_fchmod (__NR_SYSCALL_BASE+ 94)
1002 #define __NR_fchown (__NR_SYSCALL_BASE+ 95)
1003 #define __NR_getpriority (__NR_SYSCALL_BASE+ 96)
1004 #define __NR_setpriority (__NR_SYSCALL_BASE+ 97)
1006 #define __NR_statfs (__NR_SYSCALL_BASE+ 99)
1007 #define __NR_fstatfs (__NR_SYSCALL_BASE+100)
1009 #define __NR_socketcall (__NR_SYSCALL_BASE+102)
1010 #define __NR_syslog (__NR_SYSCALL_BASE+103)
1011 #define __NR_setitimer (__NR_SYSCALL_BASE+104)
1012 #define __NR_getitimer (__NR_SYSCALL_BASE+105)
1013 #define __NR_stat (__NR_SYSCALL_BASE+106)
1014 #define __NR_lstat (__NR_SYSCALL_BASE+107)
1015 #define __NR_fstat (__NR_SYSCALL_BASE+108)
1018 #define __NR_vhangup (__NR_SYSCALL_BASE+111)
1020 #define __NR_syscall (__NR_SYSCALL_BASE+113) /* syscall to call a syscall! */
1021 #define __NR_wait4 (__NR_SYSCALL_BASE+114)
1022 #define __NR_swapoff (__NR_SYSCALL_BASE+115)
1023 #define __NR_sysinfo (__NR_SYSCALL_BASE+116)
1024 #define __NR_ipc (__NR_SYSCALL_BASE+117)
1025 #define __NR_fsync (__NR_SYSCALL_BASE+118)
1026 #define __NR_sigreturn (__NR_SYSCALL_BASE+119)
1027 #define __NR_clone (__NR_SYSCALL_BASE+120)
1028 #define __NR_setdomainname (__NR_SYSCALL_BASE+121)
1029 #define __NR_uname (__NR_SYSCALL_BASE+122)
1031 #define __NR_adjtimex (__NR_SYSCALL_BASE+124)
1032 #define __NR_mprotect (__NR_SYSCALL_BASE+125)
1033 #define __NR_sigprocmask (__NR_SYSCALL_BASE+126)
1035 #define __NR_init_module (__NR_SYSCALL_BASE+128)
1036 #define __NR_delete_module (__NR_SYSCALL_BASE+129)
1038 #define __NR_quotactl (__NR_SYSCALL_BASE+131)
1039 #define __NR_getpgid (__NR_SYSCALL_BASE+132)
1040 #define __NR_fchdir (__NR_SYSCALL_BASE+133)
1041 #define __NR_bdflush (__NR_SYSCALL_BASE+134)
1042 #define __NR_sysfs (__NR_SYSCALL_BASE+135)
1043 #define __NR_personality (__NR_SYSCALL_BASE+136)
1045 #define __NR_setfsuid (__NR_SYSCALL_BASE+138)
1046 #define __NR_setfsgid (__NR_SYSCALL_BASE+139)
1047 #define __NR__llseek (__NR_SYSCALL_BASE+140)
1048 #define __NR_getdents (__NR_SYSCALL_BASE+141)
1049 #define __NR__newselect (__NR_SYSCALL_BASE+142)
1050 #define __NR_flock (__NR_SYSCALL_BASE+143)
1051 #define __NR_msync (__NR_SYSCALL_BASE+144)
1052 #define __NR_readv (__NR_SYSCALL_BASE+145)
1053 #define __NR_writev (__NR_SYSCALL_BASE+146)
1054 #define __NR_getsid (__NR_SYSCALL_BASE+147)
1055 #define __NR_fdatasync (__NR_SYSCALL_BASE+148)
1056 #define __NR__sysctl (__NR_SYSCALL_BASE+149)
1057 #define __NR_mlock (__NR_SYSCALL_BASE+150)
1058 #define __NR_munlock (__NR_SYSCALL_BASE+151)
1059 #define __NR_mlockall (__NR_SYSCALL_BASE+152)
1060 #define __NR_munlockall (__NR_SYSCALL_BASE+153)
1061 #define __NR_sched_setparam (__NR_SYSCALL_BASE+154)
1062 #define __NR_sched_getparam (__NR_SYSCALL_BASE+155)
1063 #define __NR_sched_setscheduler (__NR_SYSCALL_BASE+156)
1064 #define __NR_sched_getscheduler (__NR_SYSCALL_BASE+157)
1065 #define __NR_sched_yield (__NR_SYSCALL_BASE+158)
1066 #define __NR_sched_get_priority_max (__NR_SYSCALL_BASE+159)
1067 #define __NR_sched_get_priority_min (__NR_SYSCALL_BASE+160)
1068 #define __NR_sched_rr_get_interval (__NR_SYSCALL_BASE+161)
1069 #define __NR_nanosleep (__NR_SYSCALL_BASE+162)
1070 #define __NR_mremap (__NR_SYSCALL_BASE+163)
1071 #define __NR_setresuid (__NR_SYSCALL_BASE+164)
1072 #define __NR_getresuid (__NR_SYSCALL_BASE+165)
1075 #define __NR_poll (__NR_SYSCALL_BASE+168)
1076 #define __NR_nfsservctl (__NR_SYSCALL_BASE+169)
1077 #define __NR_setresgid (__NR_SYSCALL_BASE+170)
1078 #define __NR_getresgid (__NR_SYSCALL_BASE+171)
1079 #define __NR_prctl (__NR_SYSCALL_BASE+172)
1080 #define __NR_rt_sigreturn (__NR_SYSCALL_BASE+173)
1081 #define __NR_rt_sigaction (__NR_SYSCALL_BASE+174)
1082 #define __NR_rt_sigprocmask (__NR_SYSCALL_BASE+175)
1083 #define __NR_rt_sigpending (__NR_SYSCALL_BASE+176)
1084 #define __NR_rt_sigtimedwait (__NR_SYSCALL_BASE+177)
1085 #define __NR_rt_sigqueueinfo (__NR_SYSCALL_BASE+178)
1086 #define __NR_rt_sigsuspend (__NR_SYSCALL_BASE+179)
1087 #define __NR_pread64 (__NR_SYSCALL_BASE+180)
1088 #define __NR_pwrite64 (__NR_SYSCALL_BASE+181)
1089 #define __NR_chown (__NR_SYSCALL_BASE+182)
1090 #define __NR_getcwd (__NR_SYSCALL_BASE+183)
1091 #define __NR_capget (__NR_SYSCALL_BASE+184)
1092 #define __NR_capset (__NR_SYSCALL_BASE+185)
1093 #define __NR_sigaltstack (__NR_SYSCALL_BASE+186)
1094 #define __NR_sendfile (__NR_SYSCALL_BASE+187)
1097 #define __NR_vfork (__NR_SYSCALL_BASE+190)
1098 #define __NR_ugetrlimit (__NR_SYSCALL_BASE+191) /* SuS compliant getrlimit */
1099 #define __NR_mmap2 (__NR_SYSCALL_BASE+192)
1100 #define __NR_truncate64 (__NR_SYSCALL_BASE+193)
1101 #define __NR_ftruncate64 (__NR_SYSCALL_BASE+194)
1102 #define __NR_stat64 (__NR_SYSCALL_BASE+195)
1103 #define __NR_lstat64 (__NR_SYSCALL_BASE+196)
1104 #define __NR_fstat64 (__NR_SYSCALL_BASE+197)
1105 #define __NR_lchown32 (__NR_SYSCALL_BASE+198)
1106 #define __NR_getuid32 (__NR_SYSCALL_BASE+199)
1107 #define __NR_getgid32 (__NR_SYSCALL_BASE+200)
1108 #define __NR_geteuid32 (__NR_SYSCALL_BASE+201)
1109 #define __NR_getegid32 (__NR_SYSCALL_BASE+202)
1110 #define __NR_setreuid32 (__NR_SYSCALL_BASE+203)
1111 #define __NR_setregid32 (__NR_SYSCALL_BASE+204)
1112 #define __NR_getgroups32 (__NR_SYSCALL_BASE+205)
1113 #define __NR_setgroups32 (__NR_SYSCALL_BASE+206)
1114 #define __NR_fchown32 (__NR_SYSCALL_BASE+207)
1115 #define __NR_setresuid32 (__NR_SYSCALL_BASE+208)
1116 #define __NR_getresuid32 (__NR_SYSCALL_BASE+209)
1117 #define __NR_setresgid32 (__NR_SYSCALL_BASE+210)
1118 #define __NR_getresgid32 (__NR_SYSCALL_BASE+211)
1119 #define __NR_chown32 (__NR_SYSCALL_BASE+212)
1120 #define __NR_setuid32 (__NR_SYSCALL_BASE+213)
1121 #define __NR_setgid32 (__NR_SYSCALL_BASE+214)
1122 #define __NR_setfsuid32 (__NR_SYSCALL_BASE+215)
1123 #define __NR_setfsgid32 (__NR_SYSCALL_BASE+216)
1124 #define __NR_getdents64 (__NR_SYSCALL_BASE+217)
1125 #define __NR_pivot_root (__NR_SYSCALL_BASE+218)
1126 #define __NR_mincore (__NR_SYSCALL_BASE+219)
1127 #define __NR_madvise (__NR_SYSCALL_BASE+220)
1128 #define __NR_fcntl64 (__NR_SYSCALL_BASE+221)
1131 #define __NR_gettid (__NR_SYSCALL_BASE+224)
1132 #define __NR_readahead (__NR_SYSCALL_BASE+225)
1133 #define __NR_setxattr (__NR_SYSCALL_BASE+226)
1134 #define __NR_lsetxattr (__NR_SYSCALL_BASE+227)
1135 #define __NR_fsetxattr (__NR_SYSCALL_BASE+228)
1136 #define __NR_getxattr (__NR_SYSCALL_BASE+229)
1137 #define __NR_lgetxattr (__NR_SYSCALL_BASE+230)
1138 #define __NR_fgetxattr (__NR_SYSCALL_BASE+231)
1139 #define __NR_listxattr (__NR_SYSCALL_BASE+232)
1140 #define __NR_llistxattr (__NR_SYSCALL_BASE+233)
1141 #define __NR_flistxattr (__NR_SYSCALL_BASE+234)
1142 #define __NR_removexattr (__NR_SYSCALL_BASE+235)
1143 #define __NR_lremovexattr (__NR_SYSCALL_BASE+236)
1144 #define __NR_fremovexattr (__NR_SYSCALL_BASE+237)
1145 #define __NR_tkill (__NR_SYSCALL_BASE+238)
1146 #define __NR_sendfile64 (__NR_SYSCALL_BASE+239)
1147 #define __NR_futex (__NR_SYSCALL_BASE+240)
1148 #define __NR_sched_setaffinity (__NR_SYSCALL_BASE+241)
1149 #define __NR_sched_getaffinity (__NR_SYSCALL_BASE+242)
1150 #define __NR_io_setup (__NR_SYSCALL_BASE+243)
1151 #define __NR_io_destroy (__NR_SYSCALL_BASE+244)
1152 #define __NR_io_getevents (__NR_SYSCALL_BASE+245)
1153 #define __NR_io_submit (__NR_SYSCALL_BASE+246)
1154 #define __NR_io_cancel (__NR_SYSCALL_BASE+247)
1155 #define __NR_exit_group (__NR_SYSCALL_BASE+248)
1156 #define __NR_lookup_dcookie (__NR_SYSCALL_BASE+249)
1157 #define __NR_epoll_create (__NR_SYSCALL_BASE+250)
1158 #define __NR_epoll_ctl (__NR_SYSCALL_BASE+251)
1159 #define __NR_epoll_wait (__NR_SYSCALL_BASE+252)
1160 #define __NR_remap_file_pages (__NR_SYSCALL_BASE+253)
1164 #define __NR_timer_create (__NR_SYSCALL_BASE+257)
1165 #define __NR_timer_settime (__NR_SYSCALL_BASE+258)
1166 #define __NR_timer_gettime (__NR_SYSCALL_BASE+259)
1167 #define __NR_timer_getoverrun (__NR_SYSCALL_BASE+260)
1168 #define __NR_timer_delete (__NR_SYSCALL_BASE+261)
1169 #define __NR_clock_settime (__NR_SYSCALL_BASE+262)
1170 #define __NR_clock_gettime (__NR_SYSCALL_BASE+263)
1171 #define __NR_clock_getres (__NR_SYSCALL_BASE+264)
1172 #define __NR_clock_nanosleep (__NR_SYSCALL_BASE+265)
1173 #define __NR_statfs64 (__NR_SYSCALL_BASE+266)
1174 #define __NR_fstatfs64 (__NR_SYSCALL_BASE+267)
1175 #define __NR_tgkill (__NR_SYSCALL_BASE+268)
1176 #define __NR_utimes (__NR_SYSCALL_BASE+269)
1177 #define __NR_fadvise64_64 (__NR_SYSCALL_BASE+270)
1178 #define __NR_pciconfig_iobase (__NR_SYSCALL_BASE+271)
1179 #define __NR_pciconfig_read (__NR_SYSCALL_BASE+272)
1180 #define __NR_pciconfig_write (__NR_SYSCALL_BASE+273)