Home | History | Annotate | Line # | Download | only in freebsd
freebsd_syscall.h revision 1.54
      1  1.37       cgd /* $NetBSD: freebsd_syscall.h,v 1.54 2004/04/21 01:05:36 christos Exp $ */
      2  1.17   thorpej 
      3   1.1   mycroft /*
      4   1.1   mycroft  * System call numbers.
      5   1.1   mycroft  *
      6   1.1   mycroft  * DO NOT EDIT-- this file is automatically generated.
      7  1.54  christos  * created from	NetBSD: syscalls.master,v 1.43 2004/01/29 02:00:02 tsarna Exp
      8   1.1   mycroft  */
      9   1.1   mycroft 
     10   1.6   thorpej /* syscall: "syscall" ret: "int" args: */
     11   1.1   mycroft #define	FREEBSD_SYS_syscall	0
     12   1.6   thorpej 
     13   1.6   thorpej /* syscall: "exit" ret: "int" args: "int" */
     14   1.1   mycroft #define	FREEBSD_SYS_exit	1
     15   1.6   thorpej 
     16   1.6   thorpej /* syscall: "fork" ret: "int" args: */
     17   1.1   mycroft #define	FREEBSD_SYS_fork	2
     18   1.6   thorpej 
     19   1.6   thorpej /* syscall: "read" ret: "int" args: "int" "char *" "u_int" */
     20   1.1   mycroft #define	FREEBSD_SYS_read	3
     21   1.6   thorpej 
     22   1.6   thorpej /* syscall: "write" ret: "int" args: "int" "char *" "u_int" */
     23   1.1   mycroft #define	FREEBSD_SYS_write	4
     24   1.6   thorpej 
     25  1.28  christos /* syscall: "open" ret: "int" args: "const char *" "int" "int" */
     26   1.1   mycroft #define	FREEBSD_SYS_open	5
     27   1.6   thorpej 
     28   1.6   thorpej /* syscall: "close" ret: "int" args: "int" */
     29   1.1   mycroft #define	FREEBSD_SYS_close	6
     30   1.6   thorpej 
     31   1.6   thorpej /* syscall: "wait4" ret: "int" args: "int" "int *" "int" "struct rusage *" */
     32   1.1   mycroft #define	FREEBSD_SYS_wait4	7
     33   1.6   thorpej 
     34  1.28  christos /* syscall: "ocreat" ret: "int" args: "const char *" "int" */
     35   1.1   mycroft #define	FREEBSD_SYS_ocreat	8
     36   1.6   thorpej 
     37  1.28  christos /* syscall: "link" ret: "int" args: "const char *" "const char *" */
     38   1.1   mycroft #define	FREEBSD_SYS_link	9
     39   1.6   thorpej 
     40  1.28  christos /* syscall: "unlink" ret: "int" args: "const char *" */
     41   1.1   mycroft #define	FREEBSD_SYS_unlink	10
     42   1.6   thorpej 
     43   1.1   mycroft 				/* 11 is obsolete execv */
     44  1.28  christos /* syscall: "chdir" ret: "int" args: "const char *" */
     45   1.1   mycroft #define	FREEBSD_SYS_chdir	12
     46   1.6   thorpej 
     47   1.6   thorpej /* syscall: "fchdir" ret: "int" args: "int" */
     48   1.1   mycroft #define	FREEBSD_SYS_fchdir	13
     49   1.6   thorpej 
     50  1.28  christos /* syscall: "mknod" ret: "int" args: "const char *" "int" "int" */
     51   1.1   mycroft #define	FREEBSD_SYS_mknod	14
     52   1.6   thorpej 
     53  1.28  christos /* syscall: "chmod" ret: "int" args: "const char *" "int" */
     54   1.1   mycroft #define	FREEBSD_SYS_chmod	15
     55   1.6   thorpej 
     56  1.28  christos /* syscall: "chown" ret: "int" args: "const char *" "int" "int" */
     57   1.1   mycroft #define	FREEBSD_SYS_chown	16
     58   1.6   thorpej 
     59   1.6   thorpej /* syscall: "break" ret: "int" args: "char *" */
     60   1.1   mycroft #define	FREEBSD_SYS_break	17
     61   1.6   thorpej 
     62  1.54  christos #ifdef COMPAT_20
     63  1.54  christos /* syscall: "getfsstat" ret: "int" args: "struct statfs12 *" "long" "int" */
     64   1.1   mycroft #define	FREEBSD_SYS_getfsstat	18
     65   1.6   thorpej 
     66  1.54  christos #else
     67  1.54  christos 				/* 18 is excluded compat_20_sys_getfsstat */
     68  1.54  christos #endif
     69   1.6   thorpej /* syscall: "olseek" ret: "long" args: "int" "long" "int" */
     70   1.1   mycroft #define	FREEBSD_SYS_olseek	19
     71   1.6   thorpej 
     72  1.40   mycroft /* syscall: "getpid_with_ppid" ret: "pid_t" args: */
     73  1.40   mycroft #define	FREEBSD_SYS_getpid_with_ppid	20
     74   1.6   thorpej 
     75  1.28  christos /* syscall: "mount" ret: "int" args: "int" "const char *" "int" "caddr_t" */
     76   1.1   mycroft #define	FREEBSD_SYS_mount	21
     77   1.6   thorpej 
     78  1.28  christos /* syscall: "unmount" ret: "int" args: "const char *" "int" */
     79   1.1   mycroft #define	FREEBSD_SYS_unmount	22
     80   1.6   thorpej 
     81   1.6   thorpej /* syscall: "setuid" ret: "int" args: "uid_t" */
     82   1.1   mycroft #define	FREEBSD_SYS_setuid	23
     83   1.6   thorpej 
     84  1.40   mycroft /* syscall: "getuid_with_euid" ret: "uid_t" args: */
     85  1.40   mycroft #define	FREEBSD_SYS_getuid_with_euid	24
     86   1.6   thorpej 
     87   1.6   thorpej /* syscall: "geteuid" ret: "uid_t" args: */
     88   1.1   mycroft #define	FREEBSD_SYS_geteuid	25
     89   1.6   thorpej 
     90   1.6   thorpej /* syscall: "ptrace" ret: "int" args: "int" "pid_t" "caddr_t" "int" */
     91   1.1   mycroft #define	FREEBSD_SYS_ptrace	26
     92   1.6   thorpej 
     93   1.6   thorpej /* syscall: "recvmsg" ret: "int" args: "int" "struct msghdr *" "int" */
     94   1.1   mycroft #define	FREEBSD_SYS_recvmsg	27
     95   1.6   thorpej 
     96   1.6   thorpej /* syscall: "sendmsg" ret: "int" args: "int" "caddr_t" "int" */
     97   1.1   mycroft #define	FREEBSD_SYS_sendmsg	28
     98   1.6   thorpej 
     99   1.6   thorpej /* syscall: "recvfrom" ret: "int" args: "int" "caddr_t" "size_t" "int" "caddr_t" "int *" */
    100   1.1   mycroft #define	FREEBSD_SYS_recvfrom	29
    101   1.6   thorpej 
    102   1.6   thorpej /* syscall: "accept" ret: "int" args: "int" "caddr_t" "int *" */
    103   1.1   mycroft #define	FREEBSD_SYS_accept	30
    104   1.6   thorpej 
    105   1.6   thorpej /* syscall: "getpeername" ret: "int" args: "int" "caddr_t" "int *" */
    106   1.1   mycroft #define	FREEBSD_SYS_getpeername	31
    107   1.6   thorpej 
    108   1.6   thorpej /* syscall: "getsockname" ret: "int" args: "int" "caddr_t" "int *" */
    109   1.1   mycroft #define	FREEBSD_SYS_getsockname	32
    110   1.6   thorpej 
    111  1.28  christos /* syscall: "access" ret: "int" args: "const char *" "int" */
    112   1.1   mycroft #define	FREEBSD_SYS_access	33
    113   1.6   thorpej 
    114  1.28  christos /* syscall: "chflags" ret: "int" args: "const char *" "int" */
    115   1.1   mycroft #define	FREEBSD_SYS_chflags	34
    116   1.6   thorpej 
    117   1.6   thorpej /* syscall: "fchflags" ret: "int" args: "int" "int" */
    118   1.1   mycroft #define	FREEBSD_SYS_fchflags	35
    119   1.6   thorpej 
    120   1.6   thorpej /* syscall: "sync" ret: "int" args: */
    121   1.1   mycroft #define	FREEBSD_SYS_sync	36
    122   1.6   thorpej 
    123   1.6   thorpej /* syscall: "kill" ret: "int" args: "int" "int" */
    124   1.1   mycroft #define	FREEBSD_SYS_kill	37
    125   1.6   thorpej 
    126  1.28  christos /* syscall: "stat43" ret: "int" args: "const char *" "struct stat43 *" */
    127  1.12  christos #define	FREEBSD_SYS_stat43	38
    128   1.6   thorpej 
    129   1.6   thorpej /* syscall: "getppid" ret: "pid_t" args: */
    130   1.1   mycroft #define	FREEBSD_SYS_getppid	39
    131   1.6   thorpej 
    132  1.28  christos /* syscall: "lstat43" ret: "int" args: "const char *" "struct stat43 *" */
    133  1.12  christos #define	FREEBSD_SYS_lstat43	40
    134   1.6   thorpej 
    135   1.6   thorpej /* syscall: "dup" ret: "int" args: "u_int" */
    136   1.1   mycroft #define	FREEBSD_SYS_dup	41
    137   1.6   thorpej 
    138   1.6   thorpej /* syscall: "pipe" ret: "int" args: */
    139   1.1   mycroft #define	FREEBSD_SYS_pipe	42
    140   1.6   thorpej 
    141   1.6   thorpej /* syscall: "getegid" ret: "gid_t" args: */
    142   1.1   mycroft #define	FREEBSD_SYS_getegid	43
    143   1.6   thorpej 
    144   1.6   thorpej /* syscall: "profil" ret: "int" args: "caddr_t" "u_int" "u_int" "u_int" */
    145   1.1   mycroft #define	FREEBSD_SYS_profil	44
    146   1.6   thorpej 
    147  1.51     pooka #ifdef KTRACE
    148   1.6   thorpej /* syscall: "ktrace" ret: "int" args: "char *" "int" "int" "int" */
    149   1.1   mycroft #define	FREEBSD_SYS_ktrace	45
    150   1.6   thorpej 
    151  1.51     pooka #else
    152  1.41  jdolecek 				/* 45 is excluded ktrace */
    153  1.51     pooka #endif
    154  1.25   mycroft /* syscall: "sigaction" ret: "int" args: "int" "const struct sigaction13 *" "struct sigaction13 *" */
    155   1.1   mycroft #define	FREEBSD_SYS_sigaction	46
    156   1.6   thorpej 
    157  1.40   mycroft /* syscall: "getgid_with_egid" ret: "gid_t" args: */
    158  1.40   mycroft #define	FREEBSD_SYS_getgid_with_egid	47
    159   1.6   thorpej 
    160  1.25   mycroft /* syscall: "sigprocmask" ret: "int" args: "int" "int" */
    161   1.1   mycroft #define	FREEBSD_SYS_sigprocmask	48
    162   1.6   thorpej 
    163   1.6   thorpej /* syscall: "__getlogin" ret: "int" args: "char *" "u_int" */
    164   1.5  christos #define	FREEBSD_SYS___getlogin	49
    165   1.6   thorpej 
    166  1.49   thorpej /* syscall: "__setlogin" ret: "int" args: "char *" */
    167  1.49   thorpej #define	FREEBSD_SYS___setlogin	50
    168   1.6   thorpej 
    169   1.6   thorpej /* syscall: "acct" ret: "int" args: "char *" */
    170   1.1   mycroft #define	FREEBSD_SYS_acct	51
    171   1.6   thorpej 
    172   1.6   thorpej /* syscall: "sigpending" ret: "int" args: */
    173   1.1   mycroft #define	FREEBSD_SYS_sigpending	52
    174   1.6   thorpej 
    175  1.14     veego /* syscall: "sigaltstack" ret: "int" args: "const struct sigaltstack13 *" "struct sigaltstack13 *" */
    176   1.1   mycroft #define	FREEBSD_SYS_sigaltstack	53
    177   1.6   thorpej 
    178   1.6   thorpej /* syscall: "ioctl" ret: "int" args: "int" "u_long" "caddr_t" */
    179   1.1   mycroft #define	FREEBSD_SYS_ioctl	54
    180   1.6   thorpej 
    181  1.28  christos /* syscall: "oreboot" ret: "int" args: "int" */
    182  1.28  christos #define	FREEBSD_SYS_oreboot	55
    183   1.6   thorpej 
    184  1.28  christos /* syscall: "revoke" ret: "int" args: "const char *" */
    185   1.1   mycroft #define	FREEBSD_SYS_revoke	56
    186   1.6   thorpej 
    187  1.28  christos /* syscall: "symlink" ret: "int" args: "const char *" "const char *" */
    188   1.1   mycroft #define	FREEBSD_SYS_symlink	57
    189   1.6   thorpej 
    190  1.28  christos /* syscall: "readlink" ret: "int" args: "const char *" "char *" "int" */
    191   1.1   mycroft #define	FREEBSD_SYS_readlink	58
    192   1.6   thorpej 
    193  1.28  christos /* syscall: "execve" ret: "int" args: "const char *" "char **" "char **" */
    194   1.1   mycroft #define	FREEBSD_SYS_execve	59
    195   1.6   thorpej 
    196   1.6   thorpej /* syscall: "umask" ret: "int" args: "int" */
    197   1.1   mycroft #define	FREEBSD_SYS_umask	60
    198   1.6   thorpej 
    199  1.28  christos /* syscall: "chroot" ret: "int" args: "const char *" */
    200   1.1   mycroft #define	FREEBSD_SYS_chroot	61
    201   1.6   thorpej 
    202  1.12  christos /* syscall: "fstat43" ret: "int" args: "int" "struct stat43 *" */
    203  1.12  christos #define	FREEBSD_SYS_fstat43	62
    204   1.6   thorpej 
    205   1.6   thorpej /* syscall: "ogetkerninfo" ret: "int" args: "int" "char *" "int *" "int" */
    206   1.1   mycroft #define	FREEBSD_SYS_ogetkerninfo	63
    207   1.6   thorpej 
    208   1.6   thorpej /* syscall: "ogetpagesize" ret: "int" args: */
    209   1.1   mycroft #define	FREEBSD_SYS_ogetpagesize	64
    210   1.6   thorpej 
    211   1.6   thorpej /* syscall: "msync" ret: "int" args: "caddr_t" "size_t" "int" */
    212   1.1   mycroft #define	FREEBSD_SYS_msync	65
    213   1.6   thorpej 
    214   1.6   thorpej /* syscall: "vfork" ret: "int" args: */
    215   1.1   mycroft #define	FREEBSD_SYS_vfork	66
    216   1.6   thorpej 
    217   1.1   mycroft 				/* 67 is obsolete vread */
    218   1.1   mycroft 				/* 68 is obsolete vwrite */
    219  1.30    kleink /* syscall: "sbrk" ret: "int" args: "intptr_t" */
    220   1.1   mycroft #define	FREEBSD_SYS_sbrk	69
    221   1.6   thorpej 
    222   1.6   thorpej /* syscall: "sstk" ret: "int" args: "int" */
    223   1.1   mycroft #define	FREEBSD_SYS_sstk	70
    224   1.6   thorpej 
    225   1.6   thorpej /* syscall: "ommap" ret: "int" args: "caddr_t" "size_t" "int" "int" "int" "long" */
    226   1.1   mycroft #define	FREEBSD_SYS_ommap	71
    227   1.6   thorpej 
    228   1.6   thorpej /* syscall: "vadvise" ret: "int" args: "int" */
    229   1.1   mycroft #define	FREEBSD_SYS_vadvise	72
    230   1.6   thorpej 
    231   1.6   thorpej /* syscall: "munmap" ret: "int" args: "caddr_t" "size_t" */
    232   1.1   mycroft #define	FREEBSD_SYS_munmap	73
    233   1.6   thorpej 
    234   1.6   thorpej /* syscall: "mprotect" ret: "int" args: "caddr_t" "size_t" "int" */
    235   1.1   mycroft #define	FREEBSD_SYS_mprotect	74
    236   1.6   thorpej 
    237   1.6   thorpej /* syscall: "madvise" ret: "int" args: "caddr_t" "size_t" "int" */
    238   1.1   mycroft #define	FREEBSD_SYS_madvise	75
    239   1.6   thorpej 
    240   1.1   mycroft 				/* 76 is obsolete vhangup */
    241   1.1   mycroft 				/* 77 is obsolete vlimit */
    242   1.6   thorpej /* syscall: "mincore" ret: "int" args: "caddr_t" "size_t" "char *" */
    243   1.1   mycroft #define	FREEBSD_SYS_mincore	78
    244   1.6   thorpej 
    245   1.6   thorpej /* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
    246   1.1   mycroft #define	FREEBSD_SYS_getgroups	79
    247   1.6   thorpej 
    248   1.6   thorpej /* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */
    249   1.1   mycroft #define	FREEBSD_SYS_setgroups	80
    250   1.6   thorpej 
    251   1.6   thorpej /* syscall: "getpgrp" ret: "int" args: */
    252   1.1   mycroft #define	FREEBSD_SYS_getpgrp	81
    253   1.6   thorpej 
    254   1.6   thorpej /* syscall: "setpgid" ret: "int" args: "int" "int" */
    255   1.1   mycroft #define	FREEBSD_SYS_setpgid	82
    256   1.6   thorpej 
    257   1.6   thorpej /* syscall: "setitimer" ret: "int" args: "u_int" "struct itimerval *" "struct itimerval *" */
    258   1.1   mycroft #define	FREEBSD_SYS_setitimer	83
    259   1.6   thorpej 
    260   1.6   thorpej /* syscall: "owait" ret: "int" args: */
    261   1.1   mycroft #define	FREEBSD_SYS_owait	84
    262   1.6   thorpej 
    263   1.6   thorpej /* syscall: "swapon" ret: "int" args: "char *" */
    264   1.1   mycroft #define	FREEBSD_SYS_swapon	85
    265   1.6   thorpej 
    266   1.6   thorpej /* syscall: "getitimer" ret: "int" args: "u_int" "struct itimerval *" */
    267   1.1   mycroft #define	FREEBSD_SYS_getitimer	86
    268   1.6   thorpej 
    269   1.6   thorpej /* syscall: "ogethostname" ret: "int" args: "char *" "u_int" */
    270   1.1   mycroft #define	FREEBSD_SYS_ogethostname	87
    271   1.6   thorpej 
    272   1.6   thorpej /* syscall: "osethostname" ret: "int" args: "char *" "u_int" */
    273   1.1   mycroft #define	FREEBSD_SYS_osethostname	88
    274   1.6   thorpej 
    275   1.6   thorpej /* syscall: "ogetdtablesize" ret: "int" args: */
    276   1.1   mycroft #define	FREEBSD_SYS_ogetdtablesize	89
    277   1.6   thorpej 
    278   1.6   thorpej /* syscall: "dup2" ret: "int" args: "u_int" "u_int" */
    279   1.1   mycroft #define	FREEBSD_SYS_dup2	90
    280   1.6   thorpej 
    281   1.6   thorpej /* syscall: "fcntl" ret: "int" args: "int" "int" "void *" */
    282   1.1   mycroft #define	FREEBSD_SYS_fcntl	92
    283   1.6   thorpej 
    284   1.6   thorpej /* syscall: "select" ret: "int" args: "u_int" "fd_set *" "fd_set *" "fd_set *" "struct timeval *" */
    285   1.1   mycroft #define	FREEBSD_SYS_select	93
    286   1.6   thorpej 
    287   1.6   thorpej /* syscall: "fsync" ret: "int" args: "int" */
    288   1.1   mycroft #define	FREEBSD_SYS_fsync	95
    289   1.6   thorpej 
    290   1.6   thorpej /* syscall: "setpriority" ret: "int" args: "int" "int" "int" */
    291   1.1   mycroft #define	FREEBSD_SYS_setpriority	96
    292   1.6   thorpej 
    293   1.6   thorpej /* syscall: "socket" ret: "int" args: "int" "int" "int" */
    294   1.1   mycroft #define	FREEBSD_SYS_socket	97
    295   1.6   thorpej 
    296   1.6   thorpej /* syscall: "connect" ret: "int" args: "int" "caddr_t" "int" */
    297   1.1   mycroft #define	FREEBSD_SYS_connect	98
    298   1.6   thorpej 
    299   1.6   thorpej /* syscall: "oaccept" ret: "int" args: "int" "caddr_t" "int *" */
    300   1.1   mycroft #define	FREEBSD_SYS_oaccept	99
    301   1.6   thorpej 
    302   1.6   thorpej /* syscall: "getpriority" ret: "int" args: "int" "int" */
    303   1.1   mycroft #define	FREEBSD_SYS_getpriority	100
    304   1.6   thorpej 
    305   1.6   thorpej /* syscall: "osend" ret: "int" args: "int" "caddr_t" "int" "int" */
    306   1.1   mycroft #define	FREEBSD_SYS_osend	101
    307   1.6   thorpej 
    308   1.6   thorpej /* syscall: "orecv" ret: "int" args: "int" "caddr_t" "int" "int" */
    309   1.1   mycroft #define	FREEBSD_SYS_orecv	102
    310   1.6   thorpej 
    311   1.6   thorpej /* syscall: "sigreturn" ret: "int" args: "struct freebsd_sigcontext *" */
    312   1.1   mycroft #define	FREEBSD_SYS_sigreturn	103
    313   1.6   thorpej 
    314   1.6   thorpej /* syscall: "bind" ret: "int" args: "int" "caddr_t" "int" */
    315   1.1   mycroft #define	FREEBSD_SYS_bind	104
    316   1.6   thorpej 
    317   1.6   thorpej /* syscall: "setsockopt" ret: "int" args: "int" "int" "int" "caddr_t" "int" */
    318   1.1   mycroft #define	FREEBSD_SYS_setsockopt	105
    319   1.6   thorpej 
    320   1.6   thorpej /* syscall: "listen" ret: "int" args: "int" "int" */
    321   1.1   mycroft #define	FREEBSD_SYS_listen	106
    322   1.6   thorpej 
    323   1.1   mycroft 				/* 107 is obsolete vtimes */
    324   1.6   thorpej /* syscall: "osigvec" ret: "int" args: "int" "struct sigvec *" "struct sigvec *" */
    325   1.1   mycroft #define	FREEBSD_SYS_osigvec	108
    326   1.6   thorpej 
    327   1.6   thorpej /* syscall: "osigblock" ret: "int" args: "int" */
    328   1.1   mycroft #define	FREEBSD_SYS_osigblock	109
    329   1.6   thorpej 
    330   1.6   thorpej /* syscall: "osigsetmask" ret: "int" args: "int" */
    331   1.1   mycroft #define	FREEBSD_SYS_osigsetmask	110
    332   1.6   thorpej 
    333   1.6   thorpej /* syscall: "sigsuspend" ret: "int" args: "int" */
    334   1.1   mycroft #define	FREEBSD_SYS_sigsuspend	111
    335   1.6   thorpej 
    336   1.6   thorpej /* syscall: "osigstack" ret: "int" args: "struct sigstack *" "struct sigstack *" */
    337   1.1   mycroft #define	FREEBSD_SYS_osigstack	112
    338   1.6   thorpej 
    339   1.6   thorpej /* syscall: "orecvmsg" ret: "int" args: "int" "struct omsghdr *" "int" */
    340   1.1   mycroft #define	FREEBSD_SYS_orecvmsg	113
    341   1.6   thorpej 
    342   1.6   thorpej /* syscall: "osendmsg" ret: "int" args: "int" "caddr_t" "int" */
    343   1.1   mycroft #define	FREEBSD_SYS_osendmsg	114
    344   1.6   thorpej 
    345  1.51     pooka #ifdef TRACE
    346   1.6   thorpej /* syscall: "vtrace" ret: "int" args: "int" "int" */
    347   1.1   mycroft #define	FREEBSD_SYS_vtrace	115
    348   1.6   thorpej 
    349  1.51     pooka #else
    350   1.1   mycroft 				/* 115 is obsolete vtrace */
    351  1.51     pooka #endif
    352   1.6   thorpej /* syscall: "gettimeofday" ret: "int" args: "struct timeval *" "struct timezone *" */
    353   1.1   mycroft #define	FREEBSD_SYS_gettimeofday	116
    354   1.6   thorpej 
    355   1.6   thorpej /* syscall: "getrusage" ret: "int" args: "int" "struct rusage *" */
    356   1.1   mycroft #define	FREEBSD_SYS_getrusage	117
    357   1.6   thorpej 
    358   1.6   thorpej /* syscall: "getsockopt" ret: "int" args: "int" "int" "int" "caddr_t" "int *" */
    359   1.1   mycroft #define	FREEBSD_SYS_getsockopt	118
    360   1.6   thorpej 
    361   1.1   mycroft 				/* 119 is obsolete resuba */
    362   1.6   thorpej /* syscall: "readv" ret: "int" args: "int" "struct iovec *" "u_int" */
    363   1.1   mycroft #define	FREEBSD_SYS_readv	120
    364   1.6   thorpej 
    365   1.6   thorpej /* syscall: "writev" ret: "int" args: "int" "struct iovec *" "u_int" */
    366   1.1   mycroft #define	FREEBSD_SYS_writev	121
    367   1.6   thorpej 
    368   1.6   thorpej /* syscall: "settimeofday" ret: "int" args: "struct timeval *" "struct timezone *" */
    369   1.1   mycroft #define	FREEBSD_SYS_settimeofday	122
    370   1.6   thorpej 
    371   1.6   thorpej /* syscall: "fchown" ret: "int" args: "int" "int" "int" */
    372   1.1   mycroft #define	FREEBSD_SYS_fchown	123
    373   1.6   thorpej 
    374   1.6   thorpej /* syscall: "fchmod" ret: "int" args: "int" "int" */
    375   1.1   mycroft #define	FREEBSD_SYS_fchmod	124
    376   1.6   thorpej 
    377   1.6   thorpej /* syscall: "orecvfrom" ret: "int" args: "int" "caddr_t" "size_t" "int" "caddr_t" "int *" */
    378   1.1   mycroft #define	FREEBSD_SYS_orecvfrom	125
    379   1.6   thorpej 
    380   1.6   thorpej /* syscall: "setreuid" ret: "int" args: "int" "int" */
    381   1.4   mycroft #define	FREEBSD_SYS_setreuid	126
    382   1.6   thorpej 
    383   1.6   thorpej /* syscall: "setregid" ret: "int" args: "int" "int" */
    384   1.4   mycroft #define	FREEBSD_SYS_setregid	127
    385   1.6   thorpej 
    386  1.28  christos /* syscall: "rename" ret: "int" args: "const char *" "const char *" */
    387   1.1   mycroft #define	FREEBSD_SYS_rename	128
    388   1.6   thorpej 
    389  1.28  christos /* syscall: "otruncate" ret: "int" args: "const char *" "long" */
    390   1.1   mycroft #define	FREEBSD_SYS_otruncate	129
    391   1.6   thorpej 
    392   1.6   thorpej /* syscall: "oftruncate" ret: "int" args: "int" "long" */
    393   1.2   mycroft #define	FREEBSD_SYS_oftruncate	130
    394   1.6   thorpej 
    395   1.6   thorpej /* syscall: "flock" ret: "int" args: "int" "int" */
    396   1.2   mycroft #define	FREEBSD_SYS_flock	131
    397   1.6   thorpej 
    398  1.28  christos /* syscall: "mkfifo" ret: "int" args: "const char *" "int" */
    399   1.1   mycroft #define	FREEBSD_SYS_mkfifo	132
    400   1.6   thorpej 
    401   1.6   thorpej /* syscall: "sendto" ret: "int" args: "int" "caddr_t" "size_t" "int" "caddr_t" "int" */
    402   1.1   mycroft #define	FREEBSD_SYS_sendto	133
    403   1.6   thorpej 
    404   1.6   thorpej /* syscall: "shutdown" ret: "int" args: "int" "int" */
    405   1.1   mycroft #define	FREEBSD_SYS_shutdown	134
    406   1.6   thorpej 
    407   1.6   thorpej /* syscall: "socketpair" ret: "int" args: "int" "int" "int" "int *" */
    408   1.1   mycroft #define	FREEBSD_SYS_socketpair	135
    409   1.6   thorpej 
    410  1.28  christos /* syscall: "mkdir" ret: "int" args: "const char *" "int" */
    411   1.1   mycroft #define	FREEBSD_SYS_mkdir	136
    412   1.6   thorpej 
    413  1.28  christos /* syscall: "rmdir" ret: "int" args: "const char *" */
    414   1.1   mycroft #define	FREEBSD_SYS_rmdir	137
    415   1.6   thorpej 
    416   1.6   thorpej /* syscall: "utimes" ret: "int" args: "char *" "struct timeval *" */
    417   1.1   mycroft #define	FREEBSD_SYS_utimes	138
    418   1.6   thorpej 
    419   1.1   mycroft 				/* 139 is obsolete 4.2 sigreturn */
    420   1.6   thorpej /* syscall: "adjtime" ret: "int" args: "struct timeval *" "struct timeval *" */
    421   1.1   mycroft #define	FREEBSD_SYS_adjtime	140
    422   1.6   thorpej 
    423   1.6   thorpej /* syscall: "ogetpeername" ret: "int" args: "int" "caddr_t" "int *" */
    424   1.1   mycroft #define	FREEBSD_SYS_ogetpeername	141
    425   1.6   thorpej 
    426   1.6   thorpej /* syscall: "ogethostid" ret: "int32_t" args: */
    427   1.1   mycroft #define	FREEBSD_SYS_ogethostid	142
    428   1.6   thorpej 
    429   1.6   thorpej /* syscall: "osethostid" ret: "int" args: "int32_t" */
    430   1.1   mycroft #define	FREEBSD_SYS_osethostid	143
    431   1.6   thorpej 
    432  1.11   mycroft /* syscall: "ogetrlimit" ret: "int" args: "u_int" "struct orlimit *" */
    433   1.1   mycroft #define	FREEBSD_SYS_ogetrlimit	144
    434   1.6   thorpej 
    435  1.11   mycroft /* syscall: "osetrlimit" ret: "int" args: "u_int" "struct orlimit *" */
    436   1.1   mycroft #define	FREEBSD_SYS_osetrlimit	145
    437   1.6   thorpej 
    438   1.6   thorpej /* syscall: "okillpg" ret: "int" args: "int" "int" */
    439   1.1   mycroft #define	FREEBSD_SYS_okillpg	146
    440   1.6   thorpej 
    441   1.6   thorpej /* syscall: "setsid" ret: "int" args: */
    442   1.1   mycroft #define	FREEBSD_SYS_setsid	147
    443   1.6   thorpej 
    444   1.6   thorpej /* syscall: "quotactl" ret: "int" args: "char *" "int" "int" "caddr_t" */
    445   1.1   mycroft #define	FREEBSD_SYS_quotactl	148
    446   1.6   thorpej 
    447   1.6   thorpej /* syscall: "oquota" ret: "int" args: */
    448   1.1   mycroft #define	FREEBSD_SYS_oquota	149
    449   1.6   thorpej 
    450   1.6   thorpej /* syscall: "ogetsockname" ret: "int" args: "int" "caddr_t" "int *" */
    451   1.1   mycroft #define	FREEBSD_SYS_ogetsockname	150
    452   1.6   thorpej 
    453  1.51     pooka #if defined(NFS) || defined(NFSSERVER)
    454   1.6   thorpej /* syscall: "nfssvc" ret: "int" args: "int" "caddr_t" */
    455   1.1   mycroft #define	FREEBSD_SYS_nfssvc	155
    456   1.6   thorpej 
    457  1.51     pooka #else
    458  1.51     pooka #endif
    459   1.6   thorpej /* syscall: "ogetdirentries" ret: "int" args: "int" "char *" "u_int" "long *" */
    460   1.1   mycroft #define	FREEBSD_SYS_ogetdirentries	156
    461   1.6   thorpej 
    462  1.54  christos /* syscall: "statfs" ret: "int" args: "const char *" "struct statfs12 *" */
    463   1.1   mycroft #define	FREEBSD_SYS_statfs	157
    464   1.6   thorpej 
    465  1.54  christos #ifdef COMPAT_20
    466  1.54  christos /* syscall: "fstatfs" ret: "int" args: "int" "struct statfs12 *" */
    467   1.1   mycroft #define	FREEBSD_SYS_fstatfs	158
    468   1.6   thorpej 
    469  1.54  christos #else
    470  1.54  christos 				/* 158 is excluded compat_20_sys_fstatfs */
    471  1.54  christos #endif
    472  1.51     pooka #ifdef NFS
    473  1.28  christos /* syscall: "getfh" ret: "int" args: "const char *" "fhandle_t *" */
    474   1.1   mycroft #define	FREEBSD_SYS_getfh	161
    475   1.6   thorpej 
    476  1.51     pooka #else
    477  1.51     pooka #endif
    478   1.6   thorpej /* syscall: "getdomainname" ret: "int" args: "char *" "int" */
    479   1.1   mycroft #define	FREEBSD_SYS_getdomainname	162
    480   1.6   thorpej 
    481   1.6   thorpej /* syscall: "setdomainname" ret: "int" args: "char *" "int" */
    482   1.1   mycroft #define	FREEBSD_SYS_setdomainname	163
    483   1.6   thorpej 
    484   1.6   thorpej /* syscall: "uname" ret: "int" args: "struct outsname *" */
    485   1.1   mycroft #define	FREEBSD_SYS_uname	164
    486   1.6   thorpej 
    487   1.6   thorpej /* syscall: "sysarch" ret: "int" args: "int" "char *" */
    488   1.1   mycroft #define	FREEBSD_SYS_sysarch	165
    489   1.6   thorpej 
    490   1.6   thorpej /* syscall: "rtprio" ret: "int" args: "int" "pid_t" "struct freebsd_rtprio *" */
    491   1.1   mycroft #define	FREEBSD_SYS_rtprio	166
    492   1.6   thorpej 
    493  1.51     pooka #if defined(SYSVSEM) && !defined(_LP64)
    494   1.6   thorpej /* syscall: "semsys" ret: "int" args: "int" "int" "int" "int" "int" */
    495   1.1   mycroft #define	FREEBSD_SYS_semsys	169
    496   1.6   thorpej 
    497  1.51     pooka #else
    498  1.51     pooka #endif
    499  1.51     pooka #if defined(SYSVMSG) && !defined(_LP64)
    500   1.6   thorpej /* syscall: "msgsys" ret: "int" args: "int" "int" "int" "int" "int" "int" */
    501   1.1   mycroft #define	FREEBSD_SYS_msgsys	170
    502   1.6   thorpej 
    503  1.51     pooka #else
    504  1.51     pooka #endif
    505  1.51     pooka #if defined(SYSVSHM) && !defined(_LP64)
    506   1.6   thorpej /* syscall: "shmsys" ret: "int" args: "int" "int" "int" "int" */
    507   1.1   mycroft #define	FREEBSD_SYS_shmsys	171
    508   1.6   thorpej 
    509  1.51     pooka #else
    510  1.51     pooka #endif
    511  1.33        tv /* syscall: "pread" ret: "ssize_t" args: "int" "void *" "size_t" "int" "off_t" */
    512  1.33        tv #define	FREEBSD_SYS_pread	173
    513  1.33        tv 
    514  1.33        tv /* syscall: "pwrite" ret: "ssize_t" args: "int" "const void *" "size_t" "int" "off_t" */
    515  1.33        tv #define	FREEBSD_SYS_pwrite	174
    516  1.33        tv 
    517  1.51     pooka #ifdef NTP
    518   1.6   thorpej /* syscall: "freebsd_ntp_adjtime" ret: "int" args: "struct freebsd_timex *" */
    519   1.1   mycroft #define	FREEBSD_SYS_freebsd_ntp_adjtime	176
    520   1.6   thorpej 
    521  1.51     pooka #else
    522  1.35     bjh21 				/* 176 is excluded ntp_adjtime */
    523  1.51     pooka #endif
    524   1.6   thorpej /* syscall: "setgid" ret: "int" args: "gid_t" */
    525   1.1   mycroft #define	FREEBSD_SYS_setgid	181
    526   1.6   thorpej 
    527   1.6   thorpej /* syscall: "setegid" ret: "int" args: "gid_t" */
    528   1.1   mycroft #define	FREEBSD_SYS_setegid	182
    529   1.6   thorpej 
    530   1.6   thorpej /* syscall: "seteuid" ret: "int" args: "uid_t" */
    531   1.1   mycroft #define	FREEBSD_SYS_seteuid	183
    532   1.6   thorpej 
    533  1.51     pooka #ifdef LFS
    534   1.6   thorpej /* syscall: "lfs_bmapv" ret: "int" args: "fsid_t *" "struct block_info *" "int" */
    535   1.1   mycroft #define	FREEBSD_SYS_lfs_bmapv	184
    536   1.6   thorpej 
    537   1.6   thorpej /* syscall: "lfs_markv" ret: "int" args: "fsid_t *" "struct block_info *" "int" */
    538   1.1   mycroft #define	FREEBSD_SYS_lfs_markv	185
    539   1.6   thorpej 
    540   1.6   thorpej /* syscall: "lfs_segclean" ret: "int" args: "fsid_t *" "u_long" */
    541   1.1   mycroft #define	FREEBSD_SYS_lfs_segclean	186
    542   1.6   thorpej 
    543   1.6   thorpej /* syscall: "lfs_segwait" ret: "int" args: "fsid_t *" "struct timeval *" */
    544   1.1   mycroft #define	FREEBSD_SYS_lfs_segwait	187
    545   1.6   thorpej 
    546  1.51     pooka #else
    547  1.51     pooka #endif
    548  1.28  christos /* syscall: "stat" ret: "int" args: "const char *" "struct stat12 *" */
    549   1.1   mycroft #define	FREEBSD_SYS_stat	188
    550   1.6   thorpej 
    551  1.13  christos /* syscall: "fstat" ret: "int" args: "int" "struct stat12 *" */
    552   1.1   mycroft #define	FREEBSD_SYS_fstat	189
    553   1.6   thorpej 
    554  1.28  christos /* syscall: "lstat" ret: "int" args: "const char *" "struct stat12 *" */
    555   1.1   mycroft #define	FREEBSD_SYS_lstat	190
    556   1.6   thorpej 
    557  1.28  christos /* syscall: "pathconf" ret: "int" args: "const char *" "int" */
    558   1.1   mycroft #define	FREEBSD_SYS_pathconf	191
    559   1.6   thorpej 
    560   1.6   thorpej /* syscall: "fpathconf" ret: "int" args: "int" "int" */
    561   1.1   mycroft #define	FREEBSD_SYS_fpathconf	192
    562   1.6   thorpej 
    563   1.6   thorpej /* syscall: "getrlimit" ret: "int" args: "u_int" "struct rlimit *" */
    564   1.1   mycroft #define	FREEBSD_SYS_getrlimit	194
    565   1.6   thorpej 
    566   1.6   thorpej /* syscall: "setrlimit" ret: "int" args: "u_int" "struct rlimit *" */
    567   1.1   mycroft #define	FREEBSD_SYS_setrlimit	195
    568   1.6   thorpej 
    569   1.6   thorpej /* syscall: "getdirentries" ret: "int" args: "int" "char *" "u_int" "long *" */
    570   1.1   mycroft #define	FREEBSD_SYS_getdirentries	196
    571   1.6   thorpej 
    572   1.6   thorpej /* syscall: "mmap" ret: "caddr_t" args: "caddr_t" "size_t" "int" "int" "int" "long" "off_t" */
    573   1.1   mycroft #define	FREEBSD_SYS_mmap	197
    574   1.6   thorpej 
    575   1.6   thorpej /* syscall: "__syscall" ret: "int" args: */
    576   1.1   mycroft #define	FREEBSD_SYS___syscall	198
    577   1.6   thorpej 
    578   1.6   thorpej /* syscall: "lseek" ret: "off_t" args: "int" "int" "off_t" "int" */
    579   1.1   mycroft #define	FREEBSD_SYS_lseek	199
    580   1.6   thorpej 
    581  1.28  christos /* syscall: "truncate" ret: "int" args: "const char *" "int" "off_t" */
    582   1.1   mycroft #define	FREEBSD_SYS_truncate	200
    583   1.6   thorpej 
    584   1.6   thorpej /* syscall: "ftruncate" ret: "int" args: "int" "int" "off_t" */
    585   1.1   mycroft #define	FREEBSD_SYS_ftruncate	201
    586   1.6   thorpej 
    587   1.6   thorpej /* syscall: "__sysctl" ret: "int" args: "int *" "u_int" "void *" "size_t *" "void *" "size_t" */
    588   1.1   mycroft #define	FREEBSD_SYS___sysctl	202
    589   1.6   thorpej 
    590   1.6   thorpej /* syscall: "mlock" ret: "int" args: "caddr_t" "size_t" */
    591   1.1   mycroft #define	FREEBSD_SYS_mlock	203
    592   1.6   thorpej 
    593   1.6   thorpej /* syscall: "munlock" ret: "int" args: "caddr_t" "size_t" */
    594   1.1   mycroft #define	FREEBSD_SYS_munlock	204
    595   1.6   thorpej 
    596  1.51     pooka #ifdef FREEBSD_BASED_ON_44LITE_R2
    597   1.6   thorpej /* syscall: "undelete" ret: "int" args: "char *" */
    598   1.1   mycroft #define	FREEBSD_SYS_undelete	205
    599  1.22  christos 
    600  1.51     pooka #else
    601  1.51     pooka #endif
    602  1.28  christos /* syscall: "futimes" ret: "int" args: "int" "const struct timeval *" */
    603  1.28  christos #define	FREEBSD_SYS_futimes	206
    604  1.28  christos 
    605  1.28  christos /* syscall: "getpgid" ret: "pid_t" args: "pid_t" */
    606  1.28  christos #define	FREEBSD_SYS_getpgid	207
    607  1.28  christos 
    608  1.51     pooka #if 0
    609  1.28  christos /* syscall: "reboot" ret: "int" args: "int" "char *" */
    610  1.28  christos #define	FREEBSD_SYS_reboot	208
    611  1.28  christos 
    612  1.51     pooka #else
    613  1.51     pooka #endif
    614  1.28  christos /* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */
    615  1.28  christos #define	FREEBSD_SYS_poll	209
    616  1.28  christos 
    617  1.51     pooka #ifdef SYSVSEM
    618  1.31   thorpej /* syscall: "__semctl" ret: "int" args: "int" "int" "int" "union __semun *" */
    619  1.28  christos #define	FREEBSD_SYS___semctl	220
    620  1.28  christos 
    621  1.28  christos /* syscall: "semget" ret: "int" args: "key_t" "int" "int" */
    622  1.28  christos #define	FREEBSD_SYS_semget	221
    623  1.28  christos 
    624  1.28  christos /* syscall: "semop" ret: "int" args: "int" "struct sembuf *" "u_int" */
    625  1.28  christos #define	FREEBSD_SYS_semop	222
    626  1.28  christos 
    627  1.28  christos /* syscall: "semconfig" ret: "int" args: "int" */
    628  1.28  christos #define	FREEBSD_SYS_semconfig	223
    629  1.28  christos 
    630  1.51     pooka #else
    631  1.51     pooka #endif
    632  1.51     pooka #ifdef SYSVMSG
    633  1.31   thorpej /* syscall: "msgctl" ret: "int" args: "int" "int" "struct msqid14_ds *" */
    634  1.28  christos #define	FREEBSD_SYS_msgctl	224
    635  1.28  christos 
    636  1.28  christos /* syscall: "msgget" ret: "int" args: "key_t" "int" */
    637  1.28  christos #define	FREEBSD_SYS_msgget	225
    638  1.28  christos 
    639  1.28  christos /* syscall: "msgsnd" ret: "int" args: "int" "void *" "size_t" "int" */
    640  1.28  christos #define	FREEBSD_SYS_msgsnd	226
    641  1.28  christos 
    642  1.28  christos /* syscall: "msgrcv" ret: "int" args: "int" "void *" "size_t" "long" "int" */
    643  1.28  christos #define	FREEBSD_SYS_msgrcv	227
    644  1.28  christos 
    645  1.51     pooka #else
    646  1.51     pooka #endif
    647  1.51     pooka #ifdef SYSVSHM
    648  1.28  christos /* syscall: "shmat" ret: "int" args: "int" "void *" "int" */
    649  1.28  christos #define	FREEBSD_SYS_shmat	228
    650  1.28  christos 
    651  1.31   thorpej /* syscall: "shmctl" ret: "int" args: "int" "int" "struct shmid_ds14 *" */
    652  1.28  christos #define	FREEBSD_SYS_shmctl	229
    653  1.28  christos 
    654  1.28  christos /* syscall: "shmdt" ret: "int" args: "void *" */
    655  1.28  christos #define	FREEBSD_SYS_shmdt	230
    656  1.28  christos 
    657  1.28  christos /* syscall: "shmget" ret: "int" args: "key_t" "int" "int" */
    658  1.28  christos #define	FREEBSD_SYS_shmget	231
    659  1.28  christos 
    660  1.51     pooka #else
    661  1.51     pooka #endif
    662  1.28  christos /* syscall: "clock_gettime" ret: "int" args: "clockid_t" "struct timespec *" */
    663  1.28  christos #define	FREEBSD_SYS_clock_gettime	232
    664  1.28  christos 
    665  1.28  christos /* syscall: "clock_settime" ret: "int" args: "clockid_t" "const struct timespec *" */
    666  1.28  christos #define	FREEBSD_SYS_clock_settime	233
    667  1.28  christos 
    668  1.28  christos /* syscall: "clock_getres" ret: "int" args: "clockid_t" "struct timespec *" */
    669  1.28  christos #define	FREEBSD_SYS_clock_getres	234
    670  1.28  christos 
    671  1.28  christos /* syscall: "nanosleep" ret: "int" args: "const struct timespec *" "struct timespec *" */
    672  1.28  christos #define	FREEBSD_SYS_nanosleep	240
    673  1.28  christos 
    674  1.44  jdolecek /* syscall: "minherit" ret: "int" args: "void *" "size_t" "int" */
    675  1.44  jdolecek #define	FREEBSD_SYS_minherit	250
    676  1.47     pooka 
    677  1.47     pooka /* syscall: "rfork" ret: "int" args: "int" */
    678  1.47     pooka #define	FREEBSD_SYS_rfork	251
    679  1.44  jdolecek 
    680  1.22  christos /* syscall: "issetugid" ret: "int" args: */
    681  1.22  christos #define	FREEBSD_SYS_issetugid	253
    682   1.6   thorpej 
    683  1.28  christos /* syscall: "lchown" ret: "int" args: "const char *" "int" "int" */
    684  1.10     enami #define	FREEBSD_SYS_lchown	254
    685  1.10     enami 
    686  1.28  christos /* syscall: "getdents" ret: "int" args: "int" "char *" "size_t" */
    687  1.28  christos #define	FREEBSD_SYS_getdents	272
    688  1.28  christos 
    689  1.28  christos /* syscall: "lchmod" ret: "int" args: "const char *" "mode_t" */
    690  1.28  christos #define	FREEBSD_SYS_lchmod	274
    691  1.28  christos 
    692  1.28  christos /* syscall: "netbsd_lchown" ret: "int" args: "const char *" "uid_t" "gid_t" */
    693  1.28  christos #define	FREEBSD_SYS_netbsd_lchown	275
    694  1.28  christos 
    695  1.28  christos /* syscall: "lutimes" ret: "int" args: "const char *" "const struct timeval *" */
    696  1.28  christos #define	FREEBSD_SYS_lutimes	276
    697  1.28  christos 
    698  1.28  christos /* syscall: "__msync13" ret: "int" args: "void *" "size_t" "int" */
    699  1.28  christos #define	FREEBSD_SYS___msync13	277
    700  1.28  christos 
    701  1.28  christos /* syscall: "__stat13" ret: "int" args: "const char *" "struct stat *" */
    702  1.28  christos #define	FREEBSD_SYS___stat13	278
    703  1.28  christos 
    704  1.28  christos /* syscall: "__fstat13" ret: "int" args: "int" "struct stat *" */
    705  1.28  christos #define	FREEBSD_SYS___fstat13	279
    706  1.28  christos 
    707  1.28  christos /* syscall: "__lstat13" ret: "int" args: "const char *" "struct stat *" */
    708  1.28  christos #define	FREEBSD_SYS___lstat13	280
    709  1.44  jdolecek 
    710  1.54  christos #ifdef COMPAT_20
    711  1.54  christos /* syscall: "fhstatfs" ret: "int" args: "const fhandle_t *" "struct statfs12 *" */
    712  1.44  jdolecek #define	FREEBSD_SYS_fhstatfs	297
    713  1.44  jdolecek 
    714  1.54  christos #else
    715  1.54  christos 				/* 297 is excluded compat_20_sys_fhstatfs */
    716  1.54  christos #endif
    717  1.44  jdolecek /* syscall: "fhopen" ret: "int" args: "const fhandle_t *" "int" */
    718  1.44  jdolecek #define	FREEBSD_SYS_fhopen	298
    719  1.44  jdolecek 
    720  1.44  jdolecek /* syscall: "fhstat" ret: "int" args: "const fhandle_t *" "struct stat *" */
    721  1.44  jdolecek #define	FREEBSD_SYS_fhstat	299
    722  1.28  christos 
    723  1.33        tv /* syscall: "getsid" ret: "pid_t" args: "pid_t" */
    724  1.33        tv #define	FREEBSD_SYS_getsid	310
    725  1.33        tv 
    726  1.48  gmcgarry /* syscall: "yield" ret: "void" args: */
    727  1.48  gmcgarry #define	FREEBSD_SYS_yield	321
    728  1.48  gmcgarry 
    729  1.33        tv /* syscall: "mlockall" ret: "int" args: "int" */
    730  1.33        tv #define	FREEBSD_SYS_mlockall	324
    731  1.33        tv 
    732  1.33        tv /* syscall: "munlockall" ret: "int" args: */
    733  1.33        tv #define	FREEBSD_SYS_munlockall	325
    734  1.33        tv 
    735  1.33        tv /* syscall: "__getcwd" ret: "int" args: "char *" "size_t" */
    736  1.33        tv #define	FREEBSD_SYS___getcwd	326
    737  1.48  gmcgarry 
    738  1.48  gmcgarry /* syscall: "sched_setparam" ret: "int" args: "pid_t" "const struct freebsd_sched_param *" */
    739  1.48  gmcgarry #define	FREEBSD_SYS_sched_setparam	327
    740  1.48  gmcgarry 
    741  1.48  gmcgarry /* syscall: "sched_getparam" ret: "int" args: "pid_t" "struct freebsd_sched_param *" */
    742  1.48  gmcgarry #define	FREEBSD_SYS_sched_getparam	328
    743  1.48  gmcgarry 
    744  1.48  gmcgarry /* syscall: "sched_setscheduler" ret: "int" args: "pid_t" "int" "const struct sched_param *" */
    745  1.48  gmcgarry #define	FREEBSD_SYS_sched_setscheduler	329
    746  1.48  gmcgarry 
    747  1.48  gmcgarry /* syscall: "sched_getscheduler" ret: "int" args: "pid_t" */
    748  1.48  gmcgarry #define	FREEBSD_SYS_sched_getscheduler	330
    749  1.48  gmcgarry 
    750  1.48  gmcgarry /* syscall: "sched_yield" ret: "int" args: */
    751  1.48  gmcgarry #define	FREEBSD_SYS_sched_yield	331
    752  1.48  gmcgarry 
    753  1.48  gmcgarry /* syscall: "sched_get_priority_max" ret: "int" args: "int" */
    754  1.48  gmcgarry #define	FREEBSD_SYS_sched_get_priority_max	332
    755  1.48  gmcgarry 
    756  1.48  gmcgarry /* syscall: "sched_get_priority_min" ret: "int" args: "int" */
    757  1.48  gmcgarry #define	FREEBSD_SYS_sched_get_priority_min	333
    758  1.41  jdolecek 
    759  1.41  jdolecek /* syscall: "utrace" ret: "int" args: "void *" "size_t" */
    760  1.41  jdolecek #define	FREEBSD_SYS_utrace	335
    761  1.34      onoe 
    762  1.34      onoe /* syscall: "__sigprocmask14" ret: "int" args: "int" "const sigset_t *" "sigset_t *" */
    763  1.34      onoe #define	FREEBSD_SYS___sigprocmask14	340
    764  1.34      onoe 
    765  1.34      onoe /* syscall: "__sigsuspend14" ret: "int" args: "const sigset_t *" */
    766  1.34      onoe #define	FREEBSD_SYS___sigsuspend14	341
    767  1.34      onoe 
    768  1.34      onoe /* syscall: "sigaction4" ret: "int" args: "int" "const struct freebsd_sigaction4 *" "struct freebsd_sigaction4 *" */
    769  1.34      onoe #define	FREEBSD_SYS_sigaction4	342
    770  1.34      onoe 
    771  1.34      onoe /* syscall: "__sigpending14" ret: "int" args: "const sigset_t *" */
    772  1.34      onoe #define	FREEBSD_SYS___sigpending14	343
    773  1.33        tv 
    774  1.52  jdolecek /* syscall: "lchflags" ret: "int" args: "const char *" "u_long" */
    775  1.52  jdolecek #define	FREEBSD_SYS_lchflags	391
    776  1.52  jdolecek 
    777  1.53    tsarna /* syscall: "uuidgen" ret: "int" args: "struct uuid *" "int" */
    778  1.53    tsarna #define	FREEBSD_SYS_uuidgen	392
    779  1.53    tsarna 
    780  1.52  jdolecek #if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
    781  1.52  jdolecek /* syscall: "_ksem_close" ret: "int" args: "semid_t" */
    782  1.52  jdolecek #define	FREEBSD_SYS__ksem_close	400
    783  1.52  jdolecek 
    784  1.52  jdolecek /* syscall: "_ksem_post" ret: "int" args: "semid_t" */
    785  1.52  jdolecek #define	FREEBSD_SYS__ksem_post	401
    786  1.52  jdolecek 
    787  1.52  jdolecek /* syscall: "_ksem_wait" ret: "int" args: "semid_t" */
    788  1.52  jdolecek #define	FREEBSD_SYS__ksem_wait	402
    789  1.52  jdolecek 
    790  1.52  jdolecek /* syscall: "_ksem_trywait" ret: "int" args: "semid_t" */
    791  1.52  jdolecek #define	FREEBSD_SYS__ksem_trywait	403
    792  1.52  jdolecek 
    793  1.52  jdolecek /* syscall: "_ksem_unlink" ret: "int" args: "const char *" */
    794  1.52  jdolecek #define	FREEBSD_SYS__ksem_unlink	406
    795  1.52  jdolecek 
    796  1.52  jdolecek /* syscall: "_ksem_getvalue" ret: "int" args: "semid_t" "unsigned int *" */
    797  1.52  jdolecek #define	FREEBSD_SYS__ksem_getvalue	407
    798  1.52  jdolecek 
    799  1.52  jdolecek /* syscall: "_ksem_destroy" ret: "int" args: "semid_t" */
    800  1.52  jdolecek #define	FREEBSD_SYS__ksem_destroy	408
    801  1.52  jdolecek 
    802  1.52  jdolecek #else
    803  1.52  jdolecek 				/* 400 is excluded ksem_close */
    804  1.52  jdolecek 				/* 401 is excluded ksem_post */
    805  1.52  jdolecek 				/* 402 is excluded ksem_wait */
    806  1.52  jdolecek 				/* 403 is excluded ksem_trywait */
    807  1.52  jdolecek 				/* 404 is excluded ksem_init */
    808  1.52  jdolecek 				/* 405 is excluded ksem_open */
    809  1.52  jdolecek 				/* 406 is excluded ksem_unlink */
    810  1.52  jdolecek 				/* 407 is excluded ksem_getvalue */
    811  1.52  jdolecek 				/* 408 is excluded ksem_destroy */
    812  1.52  jdolecek #endif
    813  1.52  jdolecek #define	FREEBSD_SYS_MAXSYSCALL	440
    814  1.39   mycroft #define	FREEBSD_SYS_NSYSENT	512
    815