Home | History | Annotate | Line # | Download | only in m68k
linux_syscall.h revision 1.1
      1  1.1  itohy /*	$NetBSD: linux_syscall.h,v 1.1 1998/12/15 19:28:31 itohy Exp $	*/
      2  1.1  itohy 
      3  1.1  itohy /*
      4  1.1  itohy  * System call numbers.
      5  1.1  itohy  *
      6  1.1  itohy  * DO NOT EDIT-- this file is automatically generated.
      7  1.1  itohy  * created from	NetBSD: syscalls.master,v 1.1 1998/12/15 19:25:41 itohy Exp
      8  1.1  itohy  */
      9  1.1  itohy 
     10  1.1  itohy /* syscall: "syscall" ret: "int" args: */
     11  1.1  itohy #define	LINUX_SYS_syscall	0
     12  1.1  itohy 
     13  1.1  itohy /* syscall: "exit" ret: "int" args: "int" */
     14  1.1  itohy #define	LINUX_SYS_exit	1
     15  1.1  itohy 
     16  1.1  itohy /* syscall: "fork" ret: "int" args: */
     17  1.1  itohy #define	LINUX_SYS_fork	2
     18  1.1  itohy 
     19  1.1  itohy /* syscall: "read" ret: "int" args: "int" "char *" "u_int" */
     20  1.1  itohy #define	LINUX_SYS_read	3
     21  1.1  itohy 
     22  1.1  itohy /* syscall: "write" ret: "int" args: "int" "char *" "u_int" */
     23  1.1  itohy #define	LINUX_SYS_write	4
     24  1.1  itohy 
     25  1.1  itohy /* syscall: "open" ret: "int" args: "char *" "int" "int" */
     26  1.1  itohy #define	LINUX_SYS_open	5
     27  1.1  itohy 
     28  1.1  itohy /* syscall: "close" ret: "int" args: "int" */
     29  1.1  itohy #define	LINUX_SYS_close	6
     30  1.1  itohy 
     31  1.1  itohy /* syscall: "waitpid" ret: "int" args: "int" "int *" "int" */
     32  1.1  itohy #define	LINUX_SYS_waitpid	7
     33  1.1  itohy 
     34  1.1  itohy /* syscall: "creat" ret: "int" args: "char *" "int" */
     35  1.1  itohy #define	LINUX_SYS_creat	8
     36  1.1  itohy 
     37  1.1  itohy /* syscall: "link" ret: "int" args: "char *" "char *" */
     38  1.1  itohy #define	LINUX_SYS_link	9
     39  1.1  itohy 
     40  1.1  itohy /* syscall: "unlink" ret: "int" args: "char *" */
     41  1.1  itohy #define	LINUX_SYS_unlink	10
     42  1.1  itohy 
     43  1.1  itohy /* syscall: "execve" ret: "int" args: "char *" "char **" "char **" */
     44  1.1  itohy #define	LINUX_SYS_execve	11
     45  1.1  itohy 
     46  1.1  itohy /* syscall: "chdir" ret: "int" args: "char *" */
     47  1.1  itohy #define	LINUX_SYS_chdir	12
     48  1.1  itohy 
     49  1.1  itohy /* syscall: "time" ret: "int" args: "linux_time_t *" */
     50  1.1  itohy #define	LINUX_SYS_time	13
     51  1.1  itohy 
     52  1.1  itohy /* syscall: "mknod" ret: "int" args: "char *" "int" "int" */
     53  1.1  itohy #define	LINUX_SYS_mknod	14
     54  1.1  itohy 
     55  1.1  itohy /* syscall: "chmod" ret: "int" args: "char *" "int" */
     56  1.1  itohy #define	LINUX_SYS_chmod	15
     57  1.1  itohy 
     58  1.1  itohy /* syscall: "chown" ret: "int" args: "char *" "int" "int" */
     59  1.1  itohy #define	LINUX_SYS_chown	16
     60  1.1  itohy 
     61  1.1  itohy 				/* 17 is obsolete break */
     62  1.1  itohy 				/* 18 is obsolete ostat */
     63  1.1  itohy /* syscall: "lseek" ret: "long" args: "int" "long" "int" */
     64  1.1  itohy #define	LINUX_SYS_lseek	19
     65  1.1  itohy 
     66  1.1  itohy /* syscall: "getpid" ret: "pid_t" args: */
     67  1.1  itohy #define	LINUX_SYS_getpid	20
     68  1.1  itohy 
     69  1.1  itohy 				/* 22 is obsolete umount */
     70  1.1  itohy /* syscall: "setuid" ret: "int" args: "uid_t" */
     71  1.1  itohy #define	LINUX_SYS_setuid	23
     72  1.1  itohy 
     73  1.1  itohy /* syscall: "getuid" ret: "uid_t" args: */
     74  1.1  itohy #define	LINUX_SYS_getuid	24
     75  1.1  itohy 
     76  1.1  itohy /* syscall: "alarm" ret: "int" args: "unsigned int" */
     77  1.1  itohy #define	LINUX_SYS_alarm	27
     78  1.1  itohy 
     79  1.1  itohy 				/* 28 is obsolete ofstat */
     80  1.1  itohy /* syscall: "pause" ret: "int" args: */
     81  1.1  itohy #define	LINUX_SYS_pause	29
     82  1.1  itohy 
     83  1.1  itohy /* syscall: "utime" ret: "int" args: "char *" "struct linux_utimbuf *" */
     84  1.1  itohy #define	LINUX_SYS_utime	30
     85  1.1  itohy 
     86  1.1  itohy 				/* 31 is obsolete stty */
     87  1.1  itohy 				/* 32 is obsolete gtty */
     88  1.1  itohy /* syscall: "access" ret: "int" args: "char *" "int" */
     89  1.1  itohy #define	LINUX_SYS_access	33
     90  1.1  itohy 
     91  1.1  itohy /* syscall: "nice" ret: "int" args: "int" */
     92  1.1  itohy #define	LINUX_SYS_nice	34
     93  1.1  itohy 
     94  1.1  itohy 				/* 35 is obsolete ftime */
     95  1.1  itohy /* syscall: "sync" ret: "int" args: */
     96  1.1  itohy #define	LINUX_SYS_sync	36
     97  1.1  itohy 
     98  1.1  itohy /* syscall: "kill" ret: "int" args: "int" "int" */
     99  1.1  itohy #define	LINUX_SYS_kill	37
    100  1.1  itohy 
    101  1.1  itohy /* syscall: "rename" ret: "int" args: "char *" "char *" */
    102  1.1  itohy #define	LINUX_SYS_rename	38
    103  1.1  itohy 
    104  1.1  itohy /* syscall: "mkdir" ret: "int" args: "char *" "int" */
    105  1.1  itohy #define	LINUX_SYS_mkdir	39
    106  1.1  itohy 
    107  1.1  itohy /* syscall: "rmdir" ret: "int" args: "char *" */
    108  1.1  itohy #define	LINUX_SYS_rmdir	40
    109  1.1  itohy 
    110  1.1  itohy /* syscall: "dup" ret: "int" args: "u_int" */
    111  1.1  itohy #define	LINUX_SYS_dup	41
    112  1.1  itohy 
    113  1.1  itohy /* syscall: "pipe" ret: "int" args: "int *" */
    114  1.1  itohy #define	LINUX_SYS_pipe	42
    115  1.1  itohy 
    116  1.1  itohy /* syscall: "times" ret: "int" args: "struct times *" */
    117  1.1  itohy #define	LINUX_SYS_times	43
    118  1.1  itohy 
    119  1.1  itohy 				/* 44 is obsolete prof */
    120  1.1  itohy /* syscall: "brk" ret: "int" args: "char *" */
    121  1.1  itohy #define	LINUX_SYS_brk	45
    122  1.1  itohy 
    123  1.1  itohy /* syscall: "setgid" ret: "int" args: "gid_t" */
    124  1.1  itohy #define	LINUX_SYS_setgid	46
    125  1.1  itohy 
    126  1.1  itohy /* syscall: "getgid" ret: "gid_t" args: */
    127  1.1  itohy #define	LINUX_SYS_getgid	47
    128  1.1  itohy 
    129  1.1  itohy /* syscall: "signal" ret: "int" args: "int" "linux_handler_t" */
    130  1.1  itohy #define	LINUX_SYS_signal	48
    131  1.1  itohy 
    132  1.1  itohy /* syscall: "geteuid" ret: "uid_t" args: */
    133  1.1  itohy #define	LINUX_SYS_geteuid	49
    134  1.1  itohy 
    135  1.1  itohy /* syscall: "getegid" ret: "gid_t" args: */
    136  1.1  itohy #define	LINUX_SYS_getegid	50
    137  1.1  itohy 
    138  1.1  itohy /* syscall: "acct" ret: "int" args: "char *" */
    139  1.1  itohy #define	LINUX_SYS_acct	51
    140  1.1  itohy 
    141  1.1  itohy 				/* 53 is obsolete lock */
    142  1.1  itohy /* syscall: "ioctl" ret: "int" args: "int" "u_long" "caddr_t" */
    143  1.1  itohy #define	LINUX_SYS_ioctl	54
    144  1.1  itohy 
    145  1.1  itohy /* syscall: "fcntl" ret: "int" args: "int" "int" "void *" */
    146  1.1  itohy #define	LINUX_SYS_fcntl	55
    147  1.1  itohy 
    148  1.1  itohy 				/* 56 is obsolete mpx */
    149  1.1  itohy /* syscall: "setpgid" ret: "int" args: "int" "int" */
    150  1.1  itohy #define	LINUX_SYS_setpgid	57
    151  1.1  itohy 
    152  1.1  itohy 				/* 58 is obsolete ulimit */
    153  1.1  itohy /* syscall: "umask" ret: "int" args: "int" */
    154  1.1  itohy #define	LINUX_SYS_umask	60
    155  1.1  itohy 
    156  1.1  itohy /* syscall: "chroot" ret: "int" args: "char *" */
    157  1.1  itohy #define	LINUX_SYS_chroot	61
    158  1.1  itohy 
    159  1.1  itohy /* syscall: "dup2" ret: "int" args: "u_int" "u_int" */
    160  1.1  itohy #define	LINUX_SYS_dup2	63
    161  1.1  itohy 
    162  1.1  itohy /* syscall: "getppid" ret: "pid_t" args: */
    163  1.1  itohy #define	LINUX_SYS_getppid	64
    164  1.1  itohy 
    165  1.1  itohy /* syscall: "getpgrp" ret: "int" args: */
    166  1.1  itohy #define	LINUX_SYS_getpgrp	65
    167  1.1  itohy 
    168  1.1  itohy /* syscall: "setsid" ret: "int" args: */
    169  1.1  itohy #define	LINUX_SYS_setsid	66
    170  1.1  itohy 
    171  1.1  itohy /* syscall: "sigaction" ret: "int" args: "int" "const struct linux_old_sigaction *" "struct linux_old_sigaction *" */
    172  1.1  itohy #define	LINUX_SYS_sigaction	67
    173  1.1  itohy 
    174  1.1  itohy /* syscall: "siggetmask" ret: "int" args: */
    175  1.1  itohy #define	LINUX_SYS_siggetmask	68
    176  1.1  itohy 
    177  1.1  itohy /* syscall: "sigsetmask" ret: "int" args: "linux_old_sigset_t" */
    178  1.1  itohy #define	LINUX_SYS_sigsetmask	69
    179  1.1  itohy 
    180  1.1  itohy /* syscall: "setreuid" ret: "int" args: "int" "int" */
    181  1.1  itohy #define	LINUX_SYS_setreuid	70
    182  1.1  itohy 
    183  1.1  itohy /* syscall: "setregid" ret: "int" args: "int" "int" */
    184  1.1  itohy #define	LINUX_SYS_setregid	71
    185  1.1  itohy 
    186  1.1  itohy /* syscall: "sigsuspend" ret: "int" args: "caddr_t" "int" "int" */
    187  1.1  itohy #define	LINUX_SYS_sigsuspend	72
    188  1.1  itohy 
    189  1.1  itohy /* syscall: "sigpending" ret: "int" args: "linux_old_sigset_t *" */
    190  1.1  itohy #define	LINUX_SYS_sigpending	73
    191  1.1  itohy 
    192  1.1  itohy /* syscall: "sethostname" ret: "int" args: "char *" "u_int" */
    193  1.1  itohy #define	LINUX_SYS_sethostname	74
    194  1.1  itohy 
    195  1.1  itohy /* syscall: "setrlimit" ret: "int" args: "u_int" "struct orlimit *" */
    196  1.1  itohy #define	LINUX_SYS_setrlimit	75
    197  1.1  itohy 
    198  1.1  itohy /* syscall: "getrlimit" ret: "int" args: "u_int" "struct orlimit *" */
    199  1.1  itohy #define	LINUX_SYS_getrlimit	76
    200  1.1  itohy 
    201  1.1  itohy /* syscall: "getrusage" ret: "int" args: "int" "struct rusage *" */
    202  1.1  itohy #define	LINUX_SYS_getrusage	77
    203  1.1  itohy 
    204  1.1  itohy /* syscall: "gettimeofday" ret: "int" args: "struct timeval *" "struct timezone *" */
    205  1.1  itohy #define	LINUX_SYS_gettimeofday	78
    206  1.1  itohy 
    207  1.1  itohy /* syscall: "settimeofday" ret: "int" args: "struct timeval *" "struct timezone *" */
    208  1.1  itohy #define	LINUX_SYS_settimeofday	79
    209  1.1  itohy 
    210  1.1  itohy /* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
    211  1.1  itohy #define	LINUX_SYS_getgroups	80
    212  1.1  itohy 
    213  1.1  itohy /* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */
    214  1.1  itohy #define	LINUX_SYS_setgroups	81
    215  1.1  itohy 
    216  1.1  itohy /* syscall: "oldselect" ret: "int" args: "struct linux_oldselect *" */
    217  1.1  itohy #define	LINUX_SYS_oldselect	82
    218  1.1  itohy 
    219  1.1  itohy /* syscall: "symlink" ret: "int" args: "char *" "char *" */
    220  1.1  itohy #define	LINUX_SYS_symlink	83
    221  1.1  itohy 
    222  1.1  itohy /* syscall: "oolstat" ret: "int" args: "char *" "struct stat43 *" */
    223  1.1  itohy #define	LINUX_SYS_oolstat	84
    224  1.1  itohy 
    225  1.1  itohy /* syscall: "readlink" ret: "int" args: "char *" "char *" "int" */
    226  1.1  itohy #define	LINUX_SYS_readlink	85
    227  1.1  itohy 
    228  1.1  itohy /* syscall: "uselib" ret: "int" args: "char *" */
    229  1.1  itohy #define	LINUX_SYS_uselib	86
    230  1.1  itohy 
    231  1.1  itohy /* syscall: "swapon" ret: "int" args: "char *" */
    232  1.1  itohy #define	LINUX_SYS_swapon	87
    233  1.1  itohy 
    234  1.1  itohy /* syscall: "reboot" ret: "int" args: "int" */
    235  1.1  itohy #define	LINUX_SYS_reboot	88
    236  1.1  itohy 
    237  1.1  itohy /* syscall: "readdir" ret: "int" args: "int" "caddr_t" "unsigned int" */
    238  1.1  itohy #define	LINUX_SYS_readdir	89
    239  1.1  itohy 
    240  1.1  itohy /* syscall: "old_mmap" ret: "int" args: "struct linux_oldmmap *" */
    241  1.1  itohy #define	LINUX_SYS_old_mmap	90
    242  1.1  itohy 
    243  1.1  itohy /* syscall: "munmap" ret: "int" args: "caddr_t" "int" */
    244  1.1  itohy #define	LINUX_SYS_munmap	91
    245  1.1  itohy 
    246  1.1  itohy /* syscall: "truncate" ret: "int" args: "char *" "long" */
    247  1.1  itohy #define	LINUX_SYS_truncate	92
    248  1.1  itohy 
    249  1.1  itohy /* syscall: "ftruncate" ret: "int" args: "int" "long" */
    250  1.1  itohy #define	LINUX_SYS_ftruncate	93
    251  1.1  itohy 
    252  1.1  itohy /* syscall: "fchmod" ret: "int" args: "int" "int" */
    253  1.1  itohy #define	LINUX_SYS_fchmod	94
    254  1.1  itohy 
    255  1.1  itohy /* syscall: "fchown" ret: "int" args: "int" "int" "int" */
    256  1.1  itohy #define	LINUX_SYS_fchown	95
    257  1.1  itohy 
    258  1.1  itohy /* syscall: "getpriority" ret: "int" args: "int" "int" */
    259  1.1  itohy #define	LINUX_SYS_getpriority	96
    260  1.1  itohy 
    261  1.1  itohy /* syscall: "setpriority" ret: "int" args: "int" "int" "int" */
    262  1.1  itohy #define	LINUX_SYS_setpriority	97
    263  1.1  itohy 
    264  1.1  itohy /* syscall: "profil" ret: "int" args: "caddr_t" "u_int" "u_int" "u_int" */
    265  1.1  itohy #define	LINUX_SYS_profil	98
    266  1.1  itohy 
    267  1.1  itohy /* syscall: "statfs" ret: "int" args: "char *" "struct linux_statfs *" */
    268  1.1  itohy #define	LINUX_SYS_statfs	99
    269  1.1  itohy 
    270  1.1  itohy /* syscall: "fstatfs" ret: "int" args: "int" "struct linux_statfs *" */
    271  1.1  itohy #define	LINUX_SYS_fstatfs	100
    272  1.1  itohy 
    273  1.1  itohy /* syscall: "socketcall" ret: "int" args: "int" "void *" */
    274  1.1  itohy #define	LINUX_SYS_socketcall	102
    275  1.1  itohy 
    276  1.1  itohy /* syscall: "setitimer" ret: "int" args: "u_int" "struct itimerval *" "struct itimerval *" */
    277  1.1  itohy #define	LINUX_SYS_setitimer	104
    278  1.1  itohy 
    279  1.1  itohy /* syscall: "getitimer" ret: "int" args: "u_int" "struct itimerval *" */
    280  1.1  itohy #define	LINUX_SYS_getitimer	105
    281  1.1  itohy 
    282  1.1  itohy /* syscall: "stat" ret: "int" args: "char *" "struct linux_stat *" */
    283  1.1  itohy #define	LINUX_SYS_stat	106
    284  1.1  itohy 
    285  1.1  itohy /* syscall: "lstat" ret: "int" args: "char *" "struct linux_stat *" */
    286  1.1  itohy #define	LINUX_SYS_lstat	107
    287  1.1  itohy 
    288  1.1  itohy /* syscall: "fstat" ret: "int" args: "int" "struct linux_stat *" */
    289  1.1  itohy #define	LINUX_SYS_fstat	108
    290  1.1  itohy 
    291  1.1  itohy /* syscall: "wait4" ret: "int" args: "int" "int *" "int" "struct rusage *" */
    292  1.1  itohy #define	LINUX_SYS_wait4	114
    293  1.1  itohy 
    294  1.1  itohy /* syscall: "ipc" ret: "int" args: "int" "int" "int" "int" "caddr_t" */
    295  1.1  itohy #define	LINUX_SYS_ipc	117
    296  1.1  itohy 
    297  1.1  itohy /* syscall: "fsync" ret: "int" args: "int" */
    298  1.1  itohy #define	LINUX_SYS_fsync	118
    299  1.1  itohy 
    300  1.1  itohy /* syscall: "sigreturn" ret: "int" args: */
    301  1.1  itohy #define	LINUX_SYS_sigreturn	119
    302  1.1  itohy 
    303  1.1  itohy /* syscall: "setdomainname" ret: "int" args: "char *" "int" */
    304  1.1  itohy #define	LINUX_SYS_setdomainname	121
    305  1.1  itohy 
    306  1.1  itohy /* syscall: "uname" ret: "int" args: "struct linux_utsname *" */
    307  1.1  itohy #define	LINUX_SYS_uname	122
    308  1.1  itohy 
    309  1.1  itohy /* syscall: "cacheflush" ret: "int" args: "unsigned long" "int" "int" "unsigned long" */
    310  1.1  itohy #define	LINUX_SYS_cacheflush	123
    311  1.1  itohy 
    312  1.1  itohy /* syscall: "mprotect" ret: "int" args: "caddr_t" "int" "int" */
    313  1.1  itohy #define	LINUX_SYS_mprotect	125
    314  1.1  itohy 
    315  1.1  itohy /* syscall: "sigprocmask" ret: "int" args: "int" "const linux_old_sigset_t *" "linux_old_sigset_t *" */
    316  1.1  itohy #define	LINUX_SYS_sigprocmask	126
    317  1.1  itohy 
    318  1.1  itohy /* syscall: "getpgid" ret: "int" args: "int" */
    319  1.1  itohy #define	LINUX_SYS_getpgid	132
    320  1.1  itohy 
    321  1.1  itohy /* syscall: "fchdir" ret: "int" args: "int" */
    322  1.1  itohy #define	LINUX_SYS_fchdir	133
    323  1.1  itohy 
    324  1.1  itohy /* syscall: "personality" ret: "int" args: "int" */
    325  1.1  itohy #define	LINUX_SYS_personality	136
    326  1.1  itohy 
    327  1.1  itohy /* syscall: "llseek" ret: "int" args: "int" "u_int32_t" "u_int32_t" "caddr_t" "int" */
    328  1.1  itohy #define	LINUX_SYS_llseek	140
    329  1.1  itohy 
    330  1.1  itohy /* syscall: "getdents" ret: "int" args: "int" "struct linux_dirent *" "unsigned int" */
    331  1.1  itohy #define	LINUX_SYS_getdents	141
    332  1.1  itohy 
    333  1.1  itohy /* syscall: "select" ret: "int" args: "int" "fd_set *" "fd_set *" "fd_set *" "struct timeval *" */
    334  1.1  itohy #define	LINUX_SYS_select	142
    335  1.1  itohy 
    336  1.1  itohy /* syscall: "flock" ret: "int" args: "int" "int" */
    337  1.1  itohy #define	LINUX_SYS_flock	143
    338  1.1  itohy 
    339  1.1  itohy /* syscall: "msync" ret: "int" args: "caddr_t" "int" "int" */
    340  1.1  itohy #define	LINUX_SYS_msync	144
    341  1.1  itohy 
    342  1.1  itohy /* syscall: "readv" ret: "int" args: "int" "struct iovec *" "u_int" */
    343  1.1  itohy #define	LINUX_SYS_readv	145
    344  1.1  itohy 
    345  1.1  itohy /* syscall: "writev" ret: "int" args: "int" "struct iovec *" "u_int" */
    346  1.1  itohy #define	LINUX_SYS_writev	146
    347  1.1  itohy 
    348  1.1  itohy /* syscall: "getsid" ret: "pid_t" args: "pid_t" */
    349  1.1  itohy #define	LINUX_SYS_getsid	147
    350  1.1  itohy 
    351  1.1  itohy /* syscall: "fdatasync" ret: "int" args: "int" */
    352  1.1  itohy #define	LINUX_SYS_fdatasync	148
    353  1.1  itohy 
    354  1.1  itohy /* syscall: "__sysctl" ret: "int" args: "struct linux___sysctl *" */
    355  1.1  itohy #define	LINUX_SYS___sysctl	149
    356  1.1  itohy 
    357  1.1  itohy /* syscall: "mlock" ret: "int" args: "caddr_t" "size_t" */
    358  1.1  itohy #define	LINUX_SYS_mlock	150
    359  1.1  itohy 
    360  1.1  itohy /* syscall: "munlock" ret: "int" args: "caddr_t" "size_t" */
    361  1.1  itohy #define	LINUX_SYS_munlock	151
    362  1.1  itohy 
    363  1.1  itohy /* syscall: "nanosleep" ret: "int" args: "const struct timespec *" "struct timespec *" */
    364  1.1  itohy #define	LINUX_SYS_nanosleep	162
    365  1.1  itohy 
    366  1.1  itohy /* syscall: "mremap" ret: "void *" args: "void *" "size_t" "size_t" "u_long" */
    367  1.1  itohy #define	LINUX_SYS_mremap	163
    368  1.1  itohy 
    369  1.1  itohy /* syscall: "rt_sigreturn" ret: "int" args: */
    370  1.1  itohy #define	LINUX_SYS_rt_sigreturn	173
    371  1.1  itohy 
    372  1.1  itohy /* syscall: "rt_sigaction" ret: "int" args: "int" "const struct linux_sigaction *" "struct linux_sigaction *" "size_t" */
    373  1.1  itohy #define	LINUX_SYS_rt_sigaction	174
    374  1.1  itohy 
    375  1.1  itohy /* syscall: "rt_sigprocmask" ret: "int" args: "int" "const linux_sigset_t *" "linux_sigset_t *" "size_t" */
    376  1.1  itohy #define	LINUX_SYS_rt_sigprocmask	175
    377  1.1  itohy 
    378  1.1  itohy /* syscall: "rt_sigpending" ret: "int" args: "linux_sigset_t *" "size_t" */
    379  1.1  itohy #define	LINUX_SYS_rt_sigpending	176
    380  1.1  itohy 
    381  1.1  itohy /* syscall: "rt_queueinfo" ret: "int" args: "int" "int" "void *" */
    382  1.1  itohy #define	LINUX_SYS_rt_queueinfo	178
    383  1.1  itohy 
    384  1.1  itohy /* syscall: "rt_sigsuspend" ret: "int" args: "linux_sigset_t *" "size_t" */
    385  1.1  itohy #define	LINUX_SYS_rt_sigsuspend	179
    386  1.1  itohy 
    387  1.1  itohy /* syscall: "lchown" ret: "int" args: "char *" "int" "int" */
    388  1.1  itohy #define	LINUX_SYS_lchown	182
    389  1.1  itohy 
    390  1.1  itohy #define	LINUX_SYS_MAXSYSCALL	187
    391