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