Home | History | Annotate | Line # | Download | only in sunos
sunos_syscall.h revision 1.93
      1  1.78       dsl /* $NetBSD: sunos_syscall.h,v 1.93 2017/12/19 08:25:37 kamil Exp $ */
      2  1.49   thorpej 
      3   1.1   deraadt /*
      4   1.1   deraadt  * System call numbers.
      5   1.1   deraadt  *
      6   1.1   deraadt  * DO NOT EDIT-- this file is automatically generated.
      7  1.87     njoly  * created from	NetBSD: syscalls.master,v 1.76 2013/11/07 19:37:19 njoly Exp
      8   1.1   deraadt  */
      9   1.1   deraadt 
     10  1.74     pavel #ifndef _SUNOS_SYS_SYSCALL_H_
     11  1.74     pavel #define	_SUNOS_SYS_SYSCALL_H_
     12  1.74     pavel 
     13  1.78       dsl #define	SUNOS_SYS_MAXSYSARGS	8
     14  1.78       dsl 
     15  1.40   thorpej /* syscall: "syscall" ret: "int" args: */
     16  1.18   deraadt #define	SUNOS_SYS_syscall	0
     17  1.40   thorpej 
     18  1.40   thorpej /* syscall: "exit" ret: "int" args: "int" */
     19  1.18   deraadt #define	SUNOS_SYS_exit	1
     20  1.40   thorpej 
     21  1.40   thorpej /* syscall: "fork" ret: "int" args: */
     22  1.18   deraadt #define	SUNOS_SYS_fork	2
     23  1.40   thorpej 
     24  1.40   thorpej /* syscall: "read" ret: "int" args: "int" "char *" "u_int" */
     25  1.18   deraadt #define	SUNOS_SYS_read	3
     26  1.40   thorpej 
     27  1.40   thorpej /* syscall: "write" ret: "int" args: "int" "char *" "u_int" */
     28  1.18   deraadt #define	SUNOS_SYS_write	4
     29  1.40   thorpej 
     30  1.57  christos /* syscall: "open" ret: "int" args: "const char *" "int" "int" */
     31  1.33   mycroft #define	SUNOS_SYS_open	5
     32  1.40   thorpej 
     33  1.40   thorpej /* syscall: "close" ret: "int" args: "int" */
     34  1.18   deraadt #define	SUNOS_SYS_close	6
     35  1.40   thorpej 
     36  1.82   tsutsui /* syscall: "wait4" ret: "int" args: "int" "int *" "int" "struct rusage50 *" */
     37  1.33   mycroft #define	SUNOS_SYS_wait4	7
     38  1.40   thorpej 
     39  1.57  christos /* syscall: "creat" ret: "int" args: "const char *" "int" */
     40  1.33   mycroft #define	SUNOS_SYS_creat	8
     41  1.40   thorpej 
     42  1.40   thorpej /* syscall: "link" ret: "int" args: "char *" "char *" */
     43  1.18   deraadt #define	SUNOS_SYS_link	9
     44  1.40   thorpej 
     45  1.40   thorpej /* syscall: "unlink" ret: "int" args: "char *" */
     46  1.18   deraadt #define	SUNOS_SYS_unlink	10
     47  1.40   thorpej 
     48  1.57  christos /* syscall: "execv" ret: "int" args: "const char *" "char **" */
     49  1.33   mycroft #define	SUNOS_SYS_execv	11
     50  1.40   thorpej 
     51  1.40   thorpej /* syscall: "chdir" ret: "int" args: "char *" */
     52  1.18   deraadt #define	SUNOS_SYS_chdir	12
     53  1.40   thorpej 
     54  1.60       mrg 				/* 13 is obsolete old_time */
     55  1.57  christos /* syscall: "mknod" ret: "int" args: "const char *" "int" "int" */
     56  1.33   mycroft #define	SUNOS_SYS_mknod	14
     57  1.40   thorpej 
     58  1.40   thorpej /* syscall: "chmod" ret: "int" args: "char *" "int" */
     59  1.18   deraadt #define	SUNOS_SYS_chmod	15
     60  1.40   thorpej 
     61  1.40   thorpej /* syscall: "chown" ret: "int" args: "char *" "int" "int" */
     62  1.18   deraadt #define	SUNOS_SYS_chown	16
     63  1.40   thorpej 
     64  1.40   thorpej /* syscall: "break" ret: "int" args: "char *" */
     65  1.18   deraadt #define	SUNOS_SYS_break	17
     66  1.40   thorpej 
     67  1.60       mrg 				/* 18 is obsolete old_stat */
     68  1.40   thorpej /* syscall: "lseek" ret: "long" args: "int" "long" "int" */
     69  1.33   mycroft #define	SUNOS_SYS_lseek	19
     70  1.40   thorpej 
     71  1.63   mycroft /* syscall: "getpid_with_ppid" ret: "pid_t" args: */
     72  1.63   mycroft #define	SUNOS_SYS_getpid_with_ppid	20
     73  1.40   thorpej 
     74  1.18   deraadt 				/* 21 is obsolete sunos_old_mount */
     75  1.40   thorpej /* syscall: "setuid" ret: "int" args: "uid_t" */
     76  1.18   deraadt #define	SUNOS_SYS_setuid	23
     77  1.40   thorpej 
     78  1.63   mycroft /* syscall: "getuid_with_euid" ret: "uid_t" args: */
     79  1.63   mycroft #define	SUNOS_SYS_getuid_with_euid	24
     80  1.40   thorpej 
     81  1.82   tsutsui /* syscall: "stime" ret: "int" args: "sunos_time_t *" */
     82  1.37  christos #define	SUNOS_SYS_stime	25
     83  1.40   thorpej 
     84  1.77  christos /* syscall: "ptrace" ret: "long" args: "int" "pid_t" "void *" "int" "char *" */
     85  1.33   mycroft #define	SUNOS_SYS_ptrace	26
     86  1.40   thorpej 
     87  1.57  christos /* syscall: "access" ret: "int" args: "const char *" "int" */
     88  1.33   mycroft #define	SUNOS_SYS_access	33
     89  1.40   thorpej 
     90  1.40   thorpej /* syscall: "sync" ret: "int" args: */
     91  1.18   deraadt #define	SUNOS_SYS_sync	36
     92  1.40   thorpej 
     93  1.40   thorpej /* syscall: "kill" ret: "int" args: "int" "int" */
     94  1.18   deraadt #define	SUNOS_SYS_kill	37
     95  1.40   thorpej 
     96  1.57  christos /* syscall: "stat" ret: "int" args: "const char *" "struct stat43 *" */
     97  1.33   mycroft #define	SUNOS_SYS_stat	38
     98  1.40   thorpej 
     99  1.57  christos /* syscall: "lstat" ret: "int" args: "const char *" "struct stat43 *" */
    100  1.33   mycroft #define	SUNOS_SYS_lstat	40
    101  1.40   thorpej 
    102  1.87     njoly /* syscall: "dup" ret: "int" args: "int" */
    103  1.18   deraadt #define	SUNOS_SYS_dup	41
    104  1.40   thorpej 
    105  1.40   thorpej /* syscall: "pipe" ret: "int" args: */
    106  1.18   deraadt #define	SUNOS_SYS_pipe	42
    107  1.40   thorpej 
    108  1.77  christos /* syscall: "profil" ret: "int" args: "void *" "u_int" "u_int" "u_int" */
    109  1.18   deraadt #define	SUNOS_SYS_profil	44
    110  1.40   thorpej 
    111  1.40   thorpej /* syscall: "setgid" ret: "int" args: "uid_t" */
    112  1.23   deraadt #define	SUNOS_SYS_setgid	46
    113  1.40   thorpej 
    114  1.63   mycroft /* syscall: "getgid_with_egid" ret: "gid_t" args: */
    115  1.63   mycroft #define	SUNOS_SYS_getgid_with_egid	47
    116  1.40   thorpej 
    117  1.40   thorpej /* syscall: "acct" ret: "int" args: "char *" */
    118  1.18   deraadt #define	SUNOS_SYS_acct	51
    119  1.40   thorpej 
    120  1.46  christos /* syscall: "mctl" ret: "int" args: "void *" "int" "int" "void *" */
    121  1.33   mycroft #define	SUNOS_SYS_mctl	53
    122  1.40   thorpej 
    123  1.77  christos /* syscall: "ioctl" ret: "int" args: "int" "u_long" "void *" */
    124  1.33   mycroft #define	SUNOS_SYS_ioctl	54
    125  1.40   thorpej 
    126  1.40   thorpej /* syscall: "reboot" ret: "int" args: "int" "char *" */
    127  1.33   mycroft #define	SUNOS_SYS_reboot	55
    128  1.40   thorpej 
    129  1.18   deraadt 				/* 56 is obsolete sunos_owait3 */
    130  1.40   thorpej /* syscall: "symlink" ret: "int" args: "char *" "char *" */
    131  1.18   deraadt #define	SUNOS_SYS_symlink	57
    132  1.40   thorpej 
    133  1.40   thorpej /* syscall: "readlink" ret: "int" args: "char *" "char *" "int" */
    134  1.18   deraadt #define	SUNOS_SYS_readlink	58
    135  1.40   thorpej 
    136  1.57  christos /* syscall: "execve" ret: "int" args: "const char *" "char **" "char **" */
    137  1.18   deraadt #define	SUNOS_SYS_execve	59
    138  1.40   thorpej 
    139  1.40   thorpej /* syscall: "umask" ret: "int" args: "int" */
    140  1.18   deraadt #define	SUNOS_SYS_umask	60
    141  1.40   thorpej 
    142  1.40   thorpej /* syscall: "chroot" ret: "int" args: "char *" */
    143  1.18   deraadt #define	SUNOS_SYS_chroot	61
    144  1.40   thorpej 
    145  1.45  christos /* syscall: "fstat" ret: "int" args: "int" "struct stat43 *" */
    146  1.33   mycroft #define	SUNOS_SYS_fstat	62
    147  1.40   thorpej 
    148  1.40   thorpej /* syscall: "getpagesize" ret: "int" args: */
    149  1.33   mycroft #define	SUNOS_SYS_getpagesize	64
    150  1.40   thorpej 
    151  1.77  christos /* syscall: "omsync" ret: "int" args: "void *" "size_t" "int" */
    152  1.33   mycroft #define	SUNOS_SYS_omsync	65
    153  1.40   thorpej 
    154  1.40   thorpej /* syscall: "vfork" ret: "int" args: */
    155  1.18   deraadt #define	SUNOS_SYS_vfork	66
    156  1.40   thorpej 
    157   1.1   deraadt 				/* 67 is obsolete vread */
    158   1.1   deraadt 				/* 68 is obsolete vwrite */
    159  1.59    kleink /* syscall: "sbrk" ret: "int" args: "intptr_t" */
    160  1.18   deraadt #define	SUNOS_SYS_sbrk	69
    161  1.40   thorpej 
    162  1.93     kamil 				/* 70 is obsolete sstk */
    163  1.46  christos /* syscall: "mmap" ret: "void *" args: "void *" "size_t" "int" "int" "int" "long" */
    164  1.33   mycroft #define	SUNOS_SYS_mmap	71
    165  1.40   thorpej 
    166  1.40   thorpej /* syscall: "vadvise" ret: "int" args: "int" */
    167  1.18   deraadt #define	SUNOS_SYS_vadvise	72
    168  1.40   thorpej 
    169  1.46  christos /* syscall: "munmap" ret: "int" args: "void *" "size_t" */
    170  1.18   deraadt #define	SUNOS_SYS_munmap	73
    171  1.40   thorpej 
    172  1.46  christos /* syscall: "mprotect" ret: "int" args: "void *" "size_t" "int" */
    173  1.18   deraadt #define	SUNOS_SYS_mprotect	74
    174  1.40   thorpej 
    175  1.46  christos /* syscall: "madvise" ret: "int" args: "void *" "size_t" "int" */
    176  1.18   deraadt #define	SUNOS_SYS_madvise	75
    177  1.40   thorpej 
    178  1.40   thorpej /* syscall: "vhangup" ret: "int" args: */
    179  1.33   mycroft #define	SUNOS_SYS_vhangup	76
    180  1.40   thorpej 
    181  1.46  christos /* syscall: "mincore" ret: "int" args: "void *" "size_t" "char *" */
    182  1.18   deraadt #define	SUNOS_SYS_mincore	78
    183  1.40   thorpej 
    184  1.40   thorpej /* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
    185  1.18   deraadt #define	SUNOS_SYS_getgroups	79
    186  1.40   thorpej 
    187  1.40   thorpej /* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */
    188  1.18   deraadt #define	SUNOS_SYS_setgroups	80
    189  1.40   thorpej 
    190  1.40   thorpej /* syscall: "getpgrp" ret: "int" args: */
    191  1.18   deraadt #define	SUNOS_SYS_getpgrp	81
    192  1.40   thorpej 
    193  1.40   thorpej /* syscall: "setpgrp" ret: "int" args: "int" "int" */
    194  1.33   mycroft #define	SUNOS_SYS_setpgrp	82
    195  1.40   thorpej 
    196  1.82   tsutsui /* syscall: "setitimer" ret: "int" args: "u_int" "struct itimerval50 *" "struct itimerval50 *" */
    197  1.18   deraadt #define	SUNOS_SYS_setitimer	83
    198  1.40   thorpej 
    199  1.40   thorpej /* syscall: "swapon" ret: "int" args: "char *" */
    200  1.18   deraadt #define	SUNOS_SYS_swapon	85
    201  1.40   thorpej 
    202  1.82   tsutsui /* syscall: "getitimer" ret: "int" args: "u_int" "struct itimerval50 *" */
    203  1.18   deraadt #define	SUNOS_SYS_getitimer	86
    204  1.40   thorpej 
    205  1.40   thorpej /* syscall: "gethostname" ret: "int" args: "char *" "u_int" */
    206  1.33   mycroft #define	SUNOS_SYS_gethostname	87
    207  1.40   thorpej 
    208  1.40   thorpej /* syscall: "sethostname" ret: "int" args: "char *" "u_int" */
    209  1.33   mycroft #define	SUNOS_SYS_sethostname	88
    210  1.40   thorpej 
    211  1.40   thorpej /* syscall: "getdtablesize" ret: "int" args: */
    212  1.33   mycroft #define	SUNOS_SYS_getdtablesize	89
    213  1.40   thorpej 
    214  1.87     njoly /* syscall: "dup2" ret: "int" args: "int" "int" */
    215  1.18   deraadt #define	SUNOS_SYS_dup2	90
    216  1.40   thorpej 
    217  1.40   thorpej /* syscall: "fcntl" ret: "int" args: "int" "int" "void *" */
    218  1.18   deraadt #define	SUNOS_SYS_fcntl	92
    219  1.40   thorpej 
    220  1.82   tsutsui /* syscall: "select" ret: "int" args: "u_int" "fd_set *" "fd_set *" "fd_set *" "struct timeval50 *" */
    221  1.18   deraadt #define	SUNOS_SYS_select	93
    222  1.40   thorpej 
    223  1.40   thorpej /* syscall: "fsync" ret: "int" args: "int" */
    224  1.18   deraadt #define	SUNOS_SYS_fsync	95
    225  1.40   thorpej 
    226  1.40   thorpej /* syscall: "setpriority" ret: "int" args: "int" "int" "int" */
    227  1.18   deraadt #define	SUNOS_SYS_setpriority	96
    228  1.40   thorpej 
    229  1.40   thorpej /* syscall: "socket" ret: "int" args: "int" "int" "int" */
    230  1.18   deraadt #define	SUNOS_SYS_socket	97
    231  1.40   thorpej 
    232  1.77  christos /* syscall: "connect" ret: "int" args: "int" "void *" "int" */
    233  1.18   deraadt #define	SUNOS_SYS_connect	98
    234  1.40   thorpej 
    235  1.77  christos /* syscall: "accept" ret: "int" args: "int" "void *" "int *" */
    236  1.33   mycroft #define	SUNOS_SYS_accept	99
    237  1.40   thorpej 
    238  1.40   thorpej /* syscall: "getpriority" ret: "int" args: "int" "int" */
    239  1.18   deraadt #define	SUNOS_SYS_getpriority	100
    240  1.40   thorpej 
    241  1.77  christos /* syscall: "send" ret: "int" args: "int" "void *" "int" "int" */
    242  1.33   mycroft #define	SUNOS_SYS_send	101
    243  1.40   thorpej 
    244  1.77  christos /* syscall: "recv" ret: "int" args: "int" "void *" "int" "int" */
    245  1.33   mycroft #define	SUNOS_SYS_recv	102
    246  1.40   thorpej 
    247  1.77  christos /* syscall: "bind" ret: "int" args: "int" "void *" "int" */
    248  1.18   deraadt #define	SUNOS_SYS_bind	104
    249  1.40   thorpej 
    250  1.77  christos /* syscall: "setsockopt" ret: "int" args: "int" "int" "int" "void *" "int" */
    251  1.33   mycroft #define	SUNOS_SYS_setsockopt	105
    252  1.40   thorpej 
    253  1.40   thorpej /* syscall: "listen" ret: "int" args: "int" "int" */
    254  1.18   deraadt #define	SUNOS_SYS_listen	106
    255  1.40   thorpej 
    256  1.40   thorpej /* syscall: "sigvec" ret: "int" args: "int" "struct sigvec *" "struct sigvec *" */
    257  1.33   mycroft #define	SUNOS_SYS_sigvec	108
    258  1.40   thorpej 
    259  1.40   thorpej /* syscall: "sigblock" ret: "int" args: "int" */
    260  1.33   mycroft #define	SUNOS_SYS_sigblock	109
    261  1.40   thorpej 
    262  1.40   thorpej /* syscall: "sigsetmask" ret: "int" args: "int" */
    263  1.33   mycroft #define	SUNOS_SYS_sigsetmask	110
    264  1.40   thorpej 
    265  1.40   thorpej /* syscall: "sigsuspend" ret: "int" args: "int" */
    266  1.18   deraadt #define	SUNOS_SYS_sigsuspend	111
    267  1.40   thorpej 
    268  1.40   thorpej /* syscall: "sigstack" ret: "int" args: "struct sigstack *" "struct sigstack *" */
    269  1.33   mycroft #define	SUNOS_SYS_sigstack	112
    270  1.40   thorpej 
    271  1.40   thorpej /* syscall: "recvmsg" ret: "int" args: "int" "struct omsghdr *" "int" */
    272  1.33   mycroft #define	SUNOS_SYS_recvmsg	113
    273  1.40   thorpej 
    274  1.77  christos /* syscall: "sendmsg" ret: "int" args: "int" "void *" "int" */
    275  1.33   mycroft #define	SUNOS_SYS_sendmsg	114
    276  1.40   thorpej 
    277   1.1   deraadt 				/* 115 is obsolete vtrace */
    278  1.82   tsutsui /* syscall: "gettimeofday" ret: "int" args: "struct timeval50 *" "struct timezone *" */
    279  1.18   deraadt #define	SUNOS_SYS_gettimeofday	116
    280  1.40   thorpej 
    281  1.82   tsutsui /* syscall: "getrusage" ret: "int" args: "int" "struct rusage50 *" */
    282  1.18   deraadt #define	SUNOS_SYS_getrusage	117
    283  1.40   thorpej 
    284  1.77  christos /* syscall: "getsockopt" ret: "int" args: "int" "int" "int" "void *" "int *" */
    285  1.18   deraadt #define	SUNOS_SYS_getsockopt	118
    286  1.40   thorpej 
    287  1.40   thorpej /* syscall: "readv" ret: "int" args: "int" "struct iovec *" "u_int" */
    288  1.18   deraadt #define	SUNOS_SYS_readv	120
    289  1.40   thorpej 
    290  1.40   thorpej /* syscall: "writev" ret: "int" args: "int" "struct iovec *" "u_int" */
    291  1.18   deraadt #define	SUNOS_SYS_writev	121
    292  1.40   thorpej 
    293  1.82   tsutsui /* syscall: "settimeofday" ret: "int" args: "struct timeval50 *" "struct timezone *" */
    294  1.18   deraadt #define	SUNOS_SYS_settimeofday	122
    295  1.40   thorpej 
    296  1.40   thorpej /* syscall: "fchown" ret: "int" args: "int" "int" "int" */
    297  1.18   deraadt #define	SUNOS_SYS_fchown	123
    298  1.40   thorpej 
    299  1.40   thorpej /* syscall: "fchmod" ret: "int" args: "int" "int" */
    300  1.18   deraadt #define	SUNOS_SYS_fchmod	124
    301  1.40   thorpej 
    302  1.77  christos /* syscall: "recvfrom" ret: "int" args: "int" "void *" "size_t" "int" "void *" "int *" */
    303  1.33   mycroft #define	SUNOS_SYS_recvfrom	125
    304  1.40   thorpej 
    305  1.40   thorpej /* syscall: "setreuid" ret: "int" args: "int" "int" */
    306  1.33   mycroft #define	SUNOS_SYS_setreuid	126
    307  1.40   thorpej 
    308  1.40   thorpej /* syscall: "setregid" ret: "int" args: "int" "int" */
    309  1.33   mycroft #define	SUNOS_SYS_setregid	127
    310  1.40   thorpej 
    311  1.40   thorpej /* syscall: "rename" ret: "int" args: "char *" "char *" */
    312  1.18   deraadt #define	SUNOS_SYS_rename	128
    313  1.40   thorpej 
    314  1.40   thorpej /* syscall: "truncate" ret: "int" args: "char *" "long" */
    315  1.33   mycroft #define	SUNOS_SYS_truncate	129
    316  1.40   thorpej 
    317  1.40   thorpej /* syscall: "ftruncate" ret: "int" args: "int" "long" */
    318  1.33   mycroft #define	SUNOS_SYS_ftruncate	130
    319  1.40   thorpej 
    320  1.40   thorpej /* syscall: "flock" ret: "int" args: "int" "int" */
    321  1.18   deraadt #define	SUNOS_SYS_flock	131
    322  1.40   thorpej 
    323  1.77  christos /* syscall: "sendto" ret: "int" args: "int" "void *" "size_t" "int" "void *" "int" */
    324  1.18   deraadt #define	SUNOS_SYS_sendto	133
    325  1.40   thorpej 
    326  1.40   thorpej /* syscall: "shutdown" ret: "int" args: "int" "int" */
    327  1.18   deraadt #define	SUNOS_SYS_shutdown	134
    328  1.40   thorpej 
    329  1.40   thorpej /* syscall: "socketpair" ret: "int" args: "int" "int" "int" "int *" */
    330  1.18   deraadt #define	SUNOS_SYS_socketpair	135
    331  1.40   thorpej 
    332  1.40   thorpej /* syscall: "mkdir" ret: "int" args: "char *" "int" */
    333  1.18   deraadt #define	SUNOS_SYS_mkdir	136
    334  1.40   thorpej 
    335  1.40   thorpej /* syscall: "rmdir" ret: "int" args: "char *" */
    336  1.18   deraadt #define	SUNOS_SYS_rmdir	137
    337  1.40   thorpej 
    338  1.82   tsutsui /* syscall: "utimes" ret: "int" args: "char *" "struct timeval50 *" */
    339  1.18   deraadt #define	SUNOS_SYS_utimes	138
    340  1.40   thorpej 
    341  1.40   thorpej /* syscall: "sigreturn" ret: "int" args: "struct sigcontext *" */
    342  1.33   mycroft #define	SUNOS_SYS_sigreturn	139
    343  1.40   thorpej 
    344  1.82   tsutsui /* syscall: "adjtime" ret: "int" args: "struct timeval50 *" "struct timeval50 *" */
    345  1.18   deraadt #define	SUNOS_SYS_adjtime	140
    346  1.40   thorpej 
    347  1.77  christos /* syscall: "getpeername" ret: "int" args: "int" "void *" "int *" */
    348  1.33   mycroft #define	SUNOS_SYS_getpeername	141
    349  1.40   thorpej 
    350  1.40   thorpej /* syscall: "gethostid" ret: "int" args: */
    351  1.33   mycroft #define	SUNOS_SYS_gethostid	142
    352  1.40   thorpej 
    353  1.40   thorpej /* syscall: "getrlimit" ret: "int" args: "u_int" "struct orlimit *" */
    354  1.33   mycroft #define	SUNOS_SYS_getrlimit	144
    355  1.40   thorpej 
    356  1.40   thorpej /* syscall: "setrlimit" ret: "int" args: "u_int" "struct orlimit *" */
    357  1.33   mycroft #define	SUNOS_SYS_setrlimit	145
    358  1.40   thorpej 
    359  1.40   thorpej /* syscall: "killpg" ret: "int" args: "int" "int" */
    360  1.33   mycroft #define	SUNOS_SYS_killpg	146
    361  1.40   thorpej 
    362  1.77  christos /* syscall: "getsockname" ret: "int" args: "int" "void *" "int *" */
    363  1.33   mycroft #define	SUNOS_SYS_getsockname	150
    364  1.40   thorpej 
    365  1.40   thorpej /* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */
    366  1.33   mycroft #define	SUNOS_SYS_poll	153
    367  1.40   thorpej 
    368  1.40   thorpej /* syscall: "getdirentries" ret: "int" args: "int" "char *" "u_int" "long *" */
    369  1.18   deraadt #define	SUNOS_SYS_getdirentries	156
    370  1.40   thorpej 
    371  1.57  christos /* syscall: "statfs" ret: "int" args: "const char *" "struct sunos_statfs *" */
    372  1.33   mycroft #define	SUNOS_SYS_statfs	157
    373  1.40   thorpej 
    374  1.40   thorpej /* syscall: "fstatfs" ret: "int" args: "int" "struct sunos_statfs *" */
    375  1.33   mycroft #define	SUNOS_SYS_fstatfs	158
    376  1.40   thorpej 
    377  1.40   thorpej /* syscall: "unmount" ret: "int" args: "char *" */
    378  1.33   mycroft #define	SUNOS_SYS_unmount	159
    379  1.40   thorpej 
    380  1.40   thorpej /* syscall: "async_daemon" ret: "int" args: */
    381  1.18   deraadt #define	SUNOS_SYS_async_daemon	160
    382  1.40   thorpej 
    383  1.40   thorpej /* syscall: "getfh" ret: "int" args: "char *" "fhandle_t *" */
    384  1.18   deraadt #define	SUNOS_SYS_getfh	161
    385  1.40   thorpej 
    386  1.40   thorpej /* syscall: "getdomainname" ret: "int" args: "char *" "int" */
    387  1.33   mycroft #define	SUNOS_SYS_getdomainname	162
    388  1.40   thorpej 
    389  1.40   thorpej /* syscall: "setdomainname" ret: "int" args: "char *" "int" */
    390  1.33   mycroft #define	SUNOS_SYS_setdomainname	163
    391  1.40   thorpej 
    392  1.77  christos /* syscall: "quotactl" ret: "int" args: "int" "char *" "int" "void *" */
    393  1.33   mycroft #define	SUNOS_SYS_quotactl	165
    394  1.40   thorpej 
    395  1.40   thorpej /* syscall: "exportfs" ret: "int" args: "char *" "char *" */
    396  1.33   mycroft #define	SUNOS_SYS_exportfs	166
    397  1.40   thorpej 
    398  1.77  christos /* syscall: "mount" ret: "int" args: "char *" "char *" "int" "void *" */
    399  1.33   mycroft #define	SUNOS_SYS_mount	167
    400  1.40   thorpej 
    401  1.40   thorpej /* syscall: "ustat" ret: "int" args: "int" "struct sunos_ustat *" */
    402  1.33   mycroft #define	SUNOS_SYS_ustat	168
    403  1.40   thorpej 
    404  1.71     perry #ifdef SYSVSEM
    405  1.40   thorpej /* syscall: "semsys" ret: "int" args: "int" "int" "int" "int" "int" */
    406  1.33   mycroft #define	SUNOS_SYS_semsys	169
    407  1.40   thorpej 
    408  1.71     perry #else
    409  1.71     perry #endif
    410  1.71     perry #ifdef SYSVMSG
    411  1.40   thorpej /* syscall: "msgsys" ret: "int" args: "int" "int" "int" "int" "int" "int" */
    412  1.33   mycroft #define	SUNOS_SYS_msgsys	170
    413  1.40   thorpej 
    414  1.71     perry #else
    415  1.71     perry #endif
    416  1.71     perry #ifdef SYSVSHM
    417  1.40   thorpej /* syscall: "shmsys" ret: "int" args: "int" "int" "int" "int" */
    418  1.33   mycroft #define	SUNOS_SYS_shmsys	171
    419  1.40   thorpej 
    420  1.71     perry #else
    421  1.71     perry #endif
    422  1.40   thorpej /* syscall: "auditsys" ret: "int" args: "char *" */
    423  1.33   mycroft #define	SUNOS_SYS_auditsys	172
    424  1.40   thorpej 
    425  1.40   thorpej /* syscall: "getdents" ret: "int" args: "int" "char *" "int" */
    426  1.33   mycroft #define	SUNOS_SYS_getdents	174
    427  1.40   thorpej 
    428  1.40   thorpej /* syscall: "setsid" ret: "int" args: */
    429  1.18   deraadt #define	SUNOS_SYS_setsid	175
    430  1.40   thorpej 
    431  1.40   thorpej /* syscall: "fchdir" ret: "int" args: "int" */
    432  1.18   deraadt #define	SUNOS_SYS_fchdir	176
    433  1.40   thorpej 
    434  1.40   thorpej /* syscall: "fchroot" ret: "int" args: "int" */
    435  1.33   mycroft #define	SUNOS_SYS_fchroot	177
    436  1.40   thorpej 
    437  1.40   thorpej /* syscall: "sigpending" ret: "int" args: "int *" */
    438  1.33   mycroft #define	SUNOS_SYS_sigpending	183
    439  1.40   thorpej 
    440  1.40   thorpej /* syscall: "setpgid" ret: "int" args: "int" "int" */
    441  1.18   deraadt #define	SUNOS_SYS_setpgid	185
    442  1.40   thorpej 
    443  1.40   thorpej /* syscall: "pathconf" ret: "long" args: "char *" "int" */
    444  1.23   deraadt #define	SUNOS_SYS_pathconf	186
    445  1.40   thorpej 
    446  1.40   thorpej /* syscall: "fpathconf" ret: "long" args: "int" "int" */
    447  1.23   deraadt #define	SUNOS_SYS_fpathconf	187
    448  1.40   thorpej 
    449  1.40   thorpej /* syscall: "sysconf" ret: "int" args: "int" */
    450  1.33   mycroft #define	SUNOS_SYS_sysconf	188
    451  1.40   thorpej 
    452  1.40   thorpej /* syscall: "uname" ret: "int" args: "struct sunos_utsname *" */
    453  1.33   mycroft #define	SUNOS_SYS_uname	189
    454  1.40   thorpej 
    455  1.25  christos #define	SUNOS_SYS_MAXSYSCALL	190
    456  1.68  jdolecek #define	SUNOS_SYS_NSYSENT	256
    457  1.74     pavel #endif /* _SUNOS_SYS_SYSCALL_H_ */
    458