The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/ibcs2/ibcs2_proto.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * System call prototypes.
    3  *
    4  * DO NOT EDIT-- this file is automatically generated.
    5  * $FreeBSD$
    6  */
    7 
    8 #ifndef _IBCS2_SYSPROTO_H_
    9 #define _IBCS2_SYSPROTO_H_
   10 
   11 #include <sys/signal.h>
   12 #include <sys/acl.h>
   13 #include <sys/cpuset.h>
   14 #include <sys/_ffcounter.h>
   15 #include <sys/_semaphore.h>
   16 #include <sys/ucontext.h>
   17 #include <sys/wait.h>
   18 
   19 #include <bsm/audit_kevents.h>
   20 
   21 struct proc;
   22 
   23 struct thread;
   24 
   25 #define PAD_(t) (sizeof(register_t) <= sizeof(t) ? \
   26                 0 : sizeof(register_t) - sizeof(t))
   27 
   28 #if BYTE_ORDER == LITTLE_ENDIAN
   29 #define PADL_(t)        0
   30 #define PADR_(t)        PAD_(t)
   31 #else
   32 #define PADL_(t)        PAD_(t)
   33 #define PADR_(t)        0
   34 #endif
   35 
   36 struct ibcs2_read_args {
   37         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
   38         char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
   39         char nbytes_l_[PADL_(u_int)]; u_int nbytes; char nbytes_r_[PADR_(u_int)];
   40 };
   41 struct ibcs2_open_args {
   42         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   43         char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
   44         char mode_l_[PADL_(int)]; int mode; char mode_r_[PADR_(int)];
   45 };
   46 struct ibcs2_wait_args {
   47         char a1_l_[PADL_(int)]; int a1; char a1_r_[PADR_(int)];
   48         char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
   49         char a3_l_[PADL_(int)]; int a3; char a3_r_[PADR_(int)];
   50 };
   51 struct ibcs2_creat_args {
   52         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   53         char mode_l_[PADL_(int)]; int mode; char mode_r_[PADR_(int)];
   54 };
   55 struct ibcs2_unlink_args {
   56         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   57 };
   58 struct ibcs2_execv_args {
   59         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   60         char argp_l_[PADL_(char **)]; char ** argp; char argp_r_[PADR_(char **)];
   61 };
   62 struct ibcs2_chdir_args {
   63         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   64 };
   65 struct ibcs2_time_args {
   66         char tp_l_[PADL_(ibcs2_time_t *)]; ibcs2_time_t * tp; char tp_r_[PADR_(ibcs2_time_t *)];
   67 };
   68 struct ibcs2_mknod_args {
   69         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   70         char mode_l_[PADL_(int)]; int mode; char mode_r_[PADR_(int)];
   71         char dev_l_[PADL_(int)]; int dev; char dev_r_[PADR_(int)];
   72 };
   73 struct ibcs2_chmod_args {
   74         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   75         char mode_l_[PADL_(int)]; int mode; char mode_r_[PADR_(int)];
   76 };
   77 struct ibcs2_chown_args {
   78         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   79         char uid_l_[PADL_(int)]; int uid; char uid_r_[PADR_(int)];
   80         char gid_l_[PADL_(int)]; int gid; char gid_r_[PADR_(int)];
   81 };
   82 struct ibcs2_stat_args {
   83         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
   84         char st_l_[PADL_(struct ibcs2_stat *)]; struct ibcs2_stat * st; char st_r_[PADR_(struct ibcs2_stat *)];
   85 };
   86 struct ibcs2_lseek_args {
   87         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
   88         char offset_l_[PADL_(long)]; long offset; char offset_r_[PADR_(long)];
   89         char whence_l_[PADL_(int)]; int whence; char whence_r_[PADR_(int)];
   90 };
   91 struct ibcs2_mount_args {
   92         char special_l_[PADL_(char *)]; char * special; char special_r_[PADR_(char *)];
   93         char dir_l_[PADL_(char *)]; char * dir; char dir_r_[PADR_(char *)];
   94         char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
   95         char fstype_l_[PADL_(int)]; int fstype; char fstype_r_[PADR_(int)];
   96         char data_l_[PADL_(char *)]; char * data; char data_r_[PADR_(char *)];
   97         char len_l_[PADL_(int)]; int len; char len_r_[PADR_(int)];
   98 };
   99 struct ibcs2_umount_args {
  100         char name_l_[PADL_(char *)]; char * name; char name_r_[PADR_(char *)];
  101 };
  102 struct ibcs2_setuid_args {
  103         char uid_l_[PADL_(int)]; int uid; char uid_r_[PADR_(int)];
  104 };
  105 struct ibcs2_stime_args {
  106         char timep_l_[PADL_(long *)]; long * timep; char timep_r_[PADR_(long *)];
  107 };
  108 struct ibcs2_alarm_args {
  109         char sec_l_[PADL_(unsigned)]; unsigned sec; char sec_r_[PADR_(unsigned)];
  110 };
  111 struct ibcs2_fstat_args {
  112         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
  113         char st_l_[PADL_(struct ibcs2_stat *)]; struct ibcs2_stat * st; char st_r_[PADR_(struct ibcs2_stat *)];
  114 };
  115 struct ibcs2_pause_args {
  116         register_t dummy;
  117 };
  118 struct ibcs2_utime_args {
  119         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  120         char buf_l_[PADL_(struct ibcs2_utimbuf *)]; struct ibcs2_utimbuf * buf; char buf_r_[PADR_(struct ibcs2_utimbuf *)];
  121 };
  122 struct ibcs2_access_args {
  123         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  124         char amode_l_[PADL_(int)]; int amode; char amode_r_[PADR_(int)];
  125 };
  126 struct ibcs2_nice_args {
  127         char incr_l_[PADL_(int)]; int incr; char incr_r_[PADR_(int)];
  128 };
  129 struct ibcs2_statfs_args {
  130         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  131         char buf_l_[PADL_(struct ibcs2_statfs *)]; struct ibcs2_statfs * buf; char buf_r_[PADR_(struct ibcs2_statfs *)];
  132         char len_l_[PADL_(int)]; int len; char len_r_[PADR_(int)];
  133         char fstype_l_[PADL_(int)]; int fstype; char fstype_r_[PADR_(int)];
  134 };
  135 struct ibcs2_kill_args {
  136         char pid_l_[PADL_(int)]; int pid; char pid_r_[PADR_(int)];
  137         char signo_l_[PADL_(int)]; int signo; char signo_r_[PADR_(int)];
  138 };
  139 struct ibcs2_fstatfs_args {
  140         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
  141         char buf_l_[PADL_(struct ibcs2_statfs *)]; struct ibcs2_statfs * buf; char buf_r_[PADR_(struct ibcs2_statfs *)];
  142         char len_l_[PADL_(int)]; int len; char len_r_[PADR_(int)];
  143         char fstype_l_[PADL_(int)]; int fstype; char fstype_r_[PADR_(int)];
  144 };
  145 struct ibcs2_pgrpsys_args {
  146         char type_l_[PADL_(int)]; int type; char type_r_[PADR_(int)];
  147         char dummy_l_[PADL_(caddr_t)]; caddr_t dummy; char dummy_r_[PADR_(caddr_t)];
  148         char pid_l_[PADL_(int)]; int pid; char pid_r_[PADR_(int)];
  149         char pgid_l_[PADL_(int)]; int pgid; char pgid_r_[PADR_(int)];
  150 };
  151 struct ibcs2_xenix_args {
  152         char a1_l_[PADL_(int)]; int a1; char a1_r_[PADR_(int)];
  153         char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
  154         char a3_l_[PADL_(int)]; int a3; char a3_r_[PADR_(int)];
  155         char a4_l_[PADL_(int)]; int a4; char a4_r_[PADR_(int)];
  156         char a5_l_[PADL_(int)]; int a5; char a5_r_[PADR_(int)];
  157 };
  158 struct ibcs2_times_args {
  159         char tp_l_[PADL_(struct tms *)]; struct tms * tp; char tp_r_[PADR_(struct tms *)];
  160 };
  161 struct ibcs2_plock_args {
  162         char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
  163 };
  164 struct ibcs2_setgid_args {
  165         char gid_l_[PADL_(int)]; int gid; char gid_r_[PADR_(int)];
  166 };
  167 struct ibcs2_sigsys_args {
  168         char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
  169         char fp_l_[PADL_(ibcs2_sig_t)]; ibcs2_sig_t fp; char fp_r_[PADR_(ibcs2_sig_t)];
  170 };
  171 struct ibcs2_msgsys_args {
  172         char which_l_[PADL_(int)]; int which; char which_r_[PADR_(int)];
  173         char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
  174         char a3_l_[PADL_(int)]; int a3; char a3_r_[PADR_(int)];
  175         char a4_l_[PADL_(int)]; int a4; char a4_r_[PADR_(int)];
  176         char a5_l_[PADL_(int)]; int a5; char a5_r_[PADR_(int)];
  177         char a6_l_[PADL_(int)]; int a6; char a6_r_[PADR_(int)];
  178 };
  179 struct ibcs2_sysi86_args {
  180         char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
  181         char arg_l_[PADL_(int *)]; int * arg; char arg_r_[PADR_(int *)];
  182 };
  183 struct ibcs2_shmsys_args {
  184         char which_l_[PADL_(int)]; int which; char which_r_[PADR_(int)];
  185         char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
  186         char a3_l_[PADL_(int)]; int a3; char a3_r_[PADR_(int)];
  187         char a4_l_[PADL_(int)]; int a4; char a4_r_[PADR_(int)];
  188 };
  189 struct ibcs2_semsys_args {
  190         char which_l_[PADL_(int)]; int which; char which_r_[PADR_(int)];
  191         char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
  192         char a3_l_[PADL_(int)]; int a3; char a3_r_[PADR_(int)];
  193         char a4_l_[PADL_(int)]; int a4; char a4_r_[PADR_(int)];
  194         char a5_l_[PADL_(int)]; int a5; char a5_r_[PADR_(int)];
  195 };
  196 struct ibcs2_ioctl_args {
  197         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
  198         char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
  199         char data_l_[PADL_(caddr_t)]; caddr_t data; char data_r_[PADR_(caddr_t)];
  200 };
  201 struct ibcs2_uadmin_args {
  202         char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
  203         char func_l_[PADL_(int)]; int func; char func_r_[PADR_(int)];
  204         char data_l_[PADL_(caddr_t)]; caddr_t data; char data_r_[PADR_(caddr_t)];
  205 };
  206 struct ibcs2_utssys_args {
  207         char a1_l_[PADL_(int)]; int a1; char a1_r_[PADR_(int)];
  208         char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
  209         char flag_l_[PADL_(int)]; int flag; char flag_r_[PADR_(int)];
  210 };
  211 struct ibcs2_execve_args {
  212         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  213         char argp_l_[PADL_(char **)]; char ** argp; char argp_r_[PADR_(char **)];
  214         char envp_l_[PADL_(char **)]; char ** envp; char envp_r_[PADR_(char **)];
  215 };
  216 struct ibcs2_fcntl_args {
  217         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
  218         char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
  219         char arg_l_[PADL_(char *)]; char * arg; char arg_r_[PADR_(char *)];
  220 };
  221 struct ibcs2_ulimit_args {
  222         char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
  223         char newlimit_l_[PADL_(int)]; int newlimit; char newlimit_r_[PADR_(int)];
  224 };
  225 struct ibcs2_rmdir_args {
  226         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  227 };
  228 struct ibcs2_mkdir_args {
  229         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  230         char mode_l_[PADL_(int)]; int mode; char mode_r_[PADR_(int)];
  231 };
  232 struct ibcs2_getdents_args {
  233         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
  234         char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
  235         char nbytes_l_[PADL_(int)]; int nbytes; char nbytes_r_[PADR_(int)];
  236 };
  237 struct ibcs2_sysfs_args {
  238         char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
  239         char d1_l_[PADL_(caddr_t)]; caddr_t d1; char d1_r_[PADR_(caddr_t)];
  240         char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
  241 };
  242 struct ibcs2_getmsg_args {
  243         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
  244         char ctl_l_[PADL_(struct ibcs2_stropts *)]; struct ibcs2_stropts * ctl; char ctl_r_[PADR_(struct ibcs2_stropts *)];
  245         char dat_l_[PADL_(struct ibcs2_stropts *)]; struct ibcs2_stropts * dat; char dat_r_[PADR_(struct ibcs2_stropts *)];
  246         char flags_l_[PADL_(int *)]; int * flags; char flags_r_[PADR_(int *)];
  247 };
  248 struct ibcs2_putmsg_args {
  249         char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
  250         char ctl_l_[PADL_(struct ibcs2_stropts *)]; struct ibcs2_stropts * ctl; char ctl_r_[PADR_(struct ibcs2_stropts *)];
  251         char dat_l_[PADL_(struct ibcs2_stropts *)]; struct ibcs2_stropts * dat; char dat_r_[PADR_(struct ibcs2_stropts *)];
  252         char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
  253 };
  254 struct ibcs2_secure_args {
  255         char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
  256         char a1_l_[PADL_(int)]; int a1; char a1_r_[PADR_(int)];
  257         char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
  258         char a3_l_[PADL_(int)]; int a3; char a3_r_[PADR_(int)];
  259         char a4_l_[PADL_(int)]; int a4; char a4_r_[PADR_(int)];
  260         char a5_l_[PADL_(int)]; int a5; char a5_r_[PADR_(int)];
  261 };
  262 struct ibcs2_symlink_args {
  263         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  264         char link_l_[PADL_(char *)]; char * link; char link_r_[PADR_(char *)];
  265 };
  266 struct ibcs2_lstat_args {
  267         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  268         char st_l_[PADL_(struct ibcs2_stat *)]; struct ibcs2_stat * st; char st_r_[PADR_(struct ibcs2_stat *)];
  269 };
  270 struct ibcs2_readlink_args {
  271         char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
  272         char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
  273         char count_l_[PADL_(int)]; int count; char count_r_[PADR_(int)];
  274 };
  275 struct ibcs2_isc_args {
  276         register_t dummy;
  277 };
  278 int     ibcs2_read(struct thread *, struct ibcs2_read_args *);
  279 int     ibcs2_open(struct thread *, struct ibcs2_open_args *);
  280 int     ibcs2_wait(struct thread *, struct ibcs2_wait_args *);
  281 int     ibcs2_creat(struct thread *, struct ibcs2_creat_args *);
  282 int     ibcs2_unlink(struct thread *, struct ibcs2_unlink_args *);
  283 int     ibcs2_execv(struct thread *, struct ibcs2_execv_args *);
  284 int     ibcs2_chdir(struct thread *, struct ibcs2_chdir_args *);
  285 int     ibcs2_time(struct thread *, struct ibcs2_time_args *);
  286 int     ibcs2_mknod(struct thread *, struct ibcs2_mknod_args *);
  287 int     ibcs2_chmod(struct thread *, struct ibcs2_chmod_args *);
  288 int     ibcs2_chown(struct thread *, struct ibcs2_chown_args *);
  289 int     ibcs2_stat(struct thread *, struct ibcs2_stat_args *);
  290 int     ibcs2_lseek(struct thread *, struct ibcs2_lseek_args *);
  291 int     ibcs2_mount(struct thread *, struct ibcs2_mount_args *);
  292 int     ibcs2_umount(struct thread *, struct ibcs2_umount_args *);
  293 int     ibcs2_setuid(struct thread *, struct ibcs2_setuid_args *);
  294 int     ibcs2_stime(struct thread *, struct ibcs2_stime_args *);
  295 int     ibcs2_alarm(struct thread *, struct ibcs2_alarm_args *);
  296 int     ibcs2_fstat(struct thread *, struct ibcs2_fstat_args *);
  297 int     ibcs2_pause(struct thread *, struct ibcs2_pause_args *);
  298 int     ibcs2_utime(struct thread *, struct ibcs2_utime_args *);
  299 int     ibcs2_access(struct thread *, struct ibcs2_access_args *);
  300 int     ibcs2_nice(struct thread *, struct ibcs2_nice_args *);
  301 int     ibcs2_statfs(struct thread *, struct ibcs2_statfs_args *);
  302 int     ibcs2_kill(struct thread *, struct ibcs2_kill_args *);
  303 int     ibcs2_fstatfs(struct thread *, struct ibcs2_fstatfs_args *);
  304 int     ibcs2_pgrpsys(struct thread *, struct ibcs2_pgrpsys_args *);
  305 int     ibcs2_xenix(struct thread *, struct ibcs2_xenix_args *);
  306 int     ibcs2_times(struct thread *, struct ibcs2_times_args *);
  307 int     ibcs2_plock(struct thread *, struct ibcs2_plock_args *);
  308 int     ibcs2_setgid(struct thread *, struct ibcs2_setgid_args *);
  309 int     ibcs2_sigsys(struct thread *, struct ibcs2_sigsys_args *);
  310 int     ibcs2_msgsys(struct thread *, struct ibcs2_msgsys_args *);
  311 int     ibcs2_sysi86(struct thread *, struct ibcs2_sysi86_args *);
  312 int     ibcs2_shmsys(struct thread *, struct ibcs2_shmsys_args *);
  313 int     ibcs2_semsys(struct thread *, struct ibcs2_semsys_args *);
  314 int     ibcs2_ioctl(struct thread *, struct ibcs2_ioctl_args *);
  315 int     ibcs2_uadmin(struct thread *, struct ibcs2_uadmin_args *);
  316 int     ibcs2_utssys(struct thread *, struct ibcs2_utssys_args *);
  317 int     ibcs2_execve(struct thread *, struct ibcs2_execve_args *);
  318 int     ibcs2_fcntl(struct thread *, struct ibcs2_fcntl_args *);
  319 int     ibcs2_ulimit(struct thread *, struct ibcs2_ulimit_args *);
  320 int     ibcs2_rmdir(struct thread *, struct ibcs2_rmdir_args *);
  321 int     ibcs2_mkdir(struct thread *, struct ibcs2_mkdir_args *);
  322 int     ibcs2_getdents(struct thread *, struct ibcs2_getdents_args *);
  323 int     ibcs2_sysfs(struct thread *, struct ibcs2_sysfs_args *);
  324 int     ibcs2_getmsg(struct thread *, struct ibcs2_getmsg_args *);
  325 int     ibcs2_putmsg(struct thread *, struct ibcs2_putmsg_args *);
  326 int     ibcs2_secure(struct thread *, struct ibcs2_secure_args *);
  327 int     ibcs2_symlink(struct thread *, struct ibcs2_symlink_args *);
  328 int     ibcs2_lstat(struct thread *, struct ibcs2_lstat_args *);
  329 int     ibcs2_readlink(struct thread *, struct ibcs2_readlink_args *);
  330 int     ibcs2_isc(struct thread *, struct ibcs2_isc_args *);
  331 
  332 #ifdef COMPAT_43
  333 
  334 
  335 #endif /* COMPAT_43 */
  336 
  337 
  338 #ifdef COMPAT_FREEBSD4
  339 
  340 
  341 #endif /* COMPAT_FREEBSD4 */
  342 
  343 
  344 #ifdef COMPAT_FREEBSD6
  345 
  346 
  347 #endif /* COMPAT_FREEBSD6 */
  348 
  349 
  350 #ifdef COMPAT_FREEBSD7
  351 
  352 
  353 #endif /* COMPAT_FREEBSD7 */
  354 
  355 
  356 #ifdef COMPAT_FREEBSD10
  357 
  358 
  359 #endif /* COMPAT_FREEBSD10 */
  360 
  361 #define IBCS2_SYS_AUE_ibcs2_read        AUE_NULL
  362 #define IBCS2_SYS_AUE_ibcs2_open        AUE_OPEN_RWTC
  363 #define IBCS2_SYS_AUE_ibcs2_wait        AUE_WAIT4
  364 #define IBCS2_SYS_AUE_ibcs2_creat       AUE_CREAT
  365 #define IBCS2_SYS_AUE_ibcs2_unlink      AUE_UNLINK
  366 #define IBCS2_SYS_AUE_ibcs2_execv       AUE_EXECVE
  367 #define IBCS2_SYS_AUE_ibcs2_chdir       AUE_CHDIR
  368 #define IBCS2_SYS_AUE_ibcs2_time        AUE_NULL
  369 #define IBCS2_SYS_AUE_ibcs2_mknod       AUE_MKNOD
  370 #define IBCS2_SYS_AUE_ibcs2_chmod       AUE_CHMOD
  371 #define IBCS2_SYS_AUE_ibcs2_chown       AUE_CHOWN
  372 #define IBCS2_SYS_AUE_ibcs2_stat        AUE_STAT
  373 #define IBCS2_SYS_AUE_ibcs2_lseek       AUE_LSEEK
  374 #define IBCS2_SYS_AUE_ibcs2_mount       AUE_MOUNT
  375 #define IBCS2_SYS_AUE_ibcs2_umount      AUE_UMOUNT
  376 #define IBCS2_SYS_AUE_ibcs2_setuid      AUE_SETUID
  377 #define IBCS2_SYS_AUE_ibcs2_stime       AUE_SETTIMEOFDAY
  378 #define IBCS2_SYS_AUE_ibcs2_alarm       AUE_NULL
  379 #define IBCS2_SYS_AUE_ibcs2_fstat       AUE_FSTAT
  380 #define IBCS2_SYS_AUE_ibcs2_pause       AUE_NULL
  381 #define IBCS2_SYS_AUE_ibcs2_utime       AUE_NULL
  382 #define IBCS2_SYS_AUE_ibcs2_access      AUE_ACCESS
  383 #define IBCS2_SYS_AUE_ibcs2_nice        AUE_NICE
  384 #define IBCS2_SYS_AUE_ibcs2_statfs      AUE_STATFS
  385 #define IBCS2_SYS_AUE_ibcs2_kill        AUE_KILL
  386 #define IBCS2_SYS_AUE_ibcs2_fstatfs     AUE_FSTATFS
  387 #define IBCS2_SYS_AUE_ibcs2_pgrpsys     AUE_NULL
  388 #define IBCS2_SYS_AUE_ibcs2_xenix       AUE_NULL
  389 #define IBCS2_SYS_AUE_ibcs2_times       AUE_NULL
  390 #define IBCS2_SYS_AUE_ibcs2_plock       AUE_NULL
  391 #define IBCS2_SYS_AUE_ibcs2_setgid      AUE_SETGID
  392 #define IBCS2_SYS_AUE_ibcs2_sigsys      AUE_NULL
  393 #define IBCS2_SYS_AUE_ibcs2_msgsys      AUE_MSGSYS
  394 #define IBCS2_SYS_AUE_ibcs2_sysi86      AUE_NULL
  395 #define IBCS2_SYS_AUE_ibcs2_shmsys      AUE_SHMSYS
  396 #define IBCS2_SYS_AUE_ibcs2_semsys      AUE_SEMSYS
  397 #define IBCS2_SYS_AUE_ibcs2_ioctl       AUE_IOCTL
  398 #define IBCS2_SYS_AUE_ibcs2_uadmin      AUE_NULL
  399 #define IBCS2_SYS_AUE_ibcs2_utssys      AUE_NULL
  400 #define IBCS2_SYS_AUE_ibcs2_execve      AUE_EXECVE
  401 #define IBCS2_SYS_AUE_ibcs2_fcntl       AUE_FCNTL
  402 #define IBCS2_SYS_AUE_ibcs2_ulimit      AUE_NULL
  403 #define IBCS2_SYS_AUE_ibcs2_rmdir       AUE_RMDIR
  404 #define IBCS2_SYS_AUE_ibcs2_mkdir       AUE_MKDIR
  405 #define IBCS2_SYS_AUE_ibcs2_getdents    AUE_GETDIRENTRIES
  406 #define IBCS2_SYS_AUE_ibcs2_sysfs       AUE_NULL
  407 #define IBCS2_SYS_AUE_ibcs2_getmsg      AUE_GETMSG
  408 #define IBCS2_SYS_AUE_ibcs2_putmsg      AUE_PUTMSG
  409 #define IBCS2_SYS_AUE_ibcs2_secure      AUE_NULL
  410 #define IBCS2_SYS_AUE_ibcs2_symlink     AUE_SYMLINK
  411 #define IBCS2_SYS_AUE_ibcs2_lstat       AUE_LSTAT
  412 #define IBCS2_SYS_AUE_ibcs2_readlink    AUE_READLINK
  413 #define IBCS2_SYS_AUE_ibcs2_isc AUE_NULL
  414 
  415 #undef PAD_
  416 #undef PADL_
  417 #undef PADR_
  418 
  419 #endif /* !_IBCS2_SYSPROTO_H_ */

Cache object: 4bbcca13a575bb7ee6cd02ba685c5b0f


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.