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/compat/svr4/svr4_syscallargs.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 /* $NetBSD: svr4_syscallargs.h,v 1.74 2006/05/29 09:46:54 drochner Exp $ */
    2 
    3 /*
    4  * System call argument lists.
    5  *
    6  * DO NOT EDIT-- this file is automatically generated.
    7  * created from NetBSD: syscalls.master,v 1.54 2006/05/29 09:44:51 drochner Exp
    8  */
    9 
   10 #ifndef _SVR4_SYS_SYSCALLARGS_H_
   11 #define _SVR4_SYS_SYSCALLARGS_H_
   12 
   13 #ifdef  syscallarg
   14 #undef  syscallarg
   15 #endif
   16 
   17 #define syscallarg(x)                                                   \
   18         union {                                                         \
   19                 register_t pad;                                         \
   20                 struct { x datum; } le;                                 \
   21                 struct { /* LINTED zero array dimension */              \
   22                         int8_t pad[  /* CONSTCOND */                    \
   23                                 (sizeof (register_t) < sizeof (x))      \
   24                                 ? 0                                     \
   25                                 : sizeof (register_t) - sizeof (x)];    \
   26                         x datum;                                        \
   27                 } be;                                                   \
   28         }
   29 
   30 struct svr4_sys_open_args {
   31         syscallarg(const char *) path;
   32         syscallarg(int) flags;
   33         syscallarg(int) mode;
   34 };
   35 
   36 struct svr4_sys_wait_args {
   37         syscallarg(int *) status;
   38 };
   39 
   40 struct svr4_sys_creat_args {
   41         syscallarg(const char *) path;
   42         syscallarg(int) mode;
   43 };
   44 
   45 struct svr4_sys_execv_args {
   46         syscallarg(const char *) path;
   47         syscallarg(char **) argp;
   48 };
   49 
   50 struct svr4_sys_time_args {
   51         syscallarg(svr4_time_t *) t;
   52 };
   53 
   54 struct svr4_sys_mknod_args {
   55         syscallarg(const char *) path;
   56         syscallarg(int) mode;
   57         syscallarg(int) dev;
   58 };
   59 
   60 struct svr4_sys_break_args {
   61         syscallarg(caddr_t) nsize;
   62 };
   63 
   64 struct svr4_sys_stat_args {
   65         syscallarg(const char *) path;
   66         syscallarg(struct svr4_stat *) ub;
   67 };
   68 
   69 struct svr4_sys_alarm_args {
   70         syscallarg(unsigned) sec;
   71 };
   72 
   73 struct svr4_sys_fstat_args {
   74         syscallarg(int) fd;
   75         syscallarg(struct svr4_stat *) sb;
   76 };
   77 
   78 struct svr4_sys_utime_args {
   79         syscallarg(const char *) path;
   80         syscallarg(struct svr4_utimbuf *) ubuf;
   81 };
   82 
   83 struct svr4_sys_access_args {
   84         syscallarg(const char *) path;
   85         syscallarg(int) flags;
   86 };
   87 
   88 struct svr4_sys_nice_args {
   89         syscallarg(int) prio;
   90 };
   91 
   92 struct svr4_sys_kill_args {
   93         syscallarg(int) pid;
   94         syscallarg(int) signum;
   95 };
   96 
   97 struct svr4_sys_pgrpsys_args {
   98         syscallarg(int) cmd;
   99         syscallarg(int) pid;
  100         syscallarg(int) pgid;
  101 };
  102 
  103 struct svr4_sys_times_args {
  104         syscallarg(struct tms *) tp;
  105 };
  106 
  107 struct svr4_sys_signal_args {
  108         syscallarg(int) signum;
  109         syscallarg(svr4_sig_t) handler;
  110 };
  111 #ifdef SYSVMSG
  112 
  113 struct svr4_sys_msgsys_args {
  114         syscallarg(int) what;
  115         syscallarg(int) a2;
  116         syscallarg(int) a3;
  117         syscallarg(int) a4;
  118         syscallarg(int) a5;
  119 };
  120 #else
  121 #endif
  122 
  123 struct svr4_sys_sysarch_args {
  124         syscallarg(int) op;
  125         syscallarg(void *) a1;
  126 };
  127 #ifdef SYSVSHM
  128 
  129 struct svr4_sys_shmsys_args {
  130         syscallarg(int) what;
  131         syscallarg(int) a2;
  132         syscallarg(int) a3;
  133         syscallarg(int) a4;
  134 };
  135 #else
  136 #endif
  137 #ifdef SYSVSEM
  138 
  139 struct svr4_sys_semsys_args {
  140         syscallarg(int) what;
  141         syscallarg(int) a2;
  142         syscallarg(int) a3;
  143         syscallarg(int) a4;
  144         syscallarg(int) a5;
  145 };
  146 #else
  147 #endif
  148 
  149 struct svr4_sys_ioctl_args {
  150         syscallarg(int) fd;
  151         syscallarg(u_long) com;
  152         syscallarg(caddr_t) data;
  153 };
  154 
  155 struct svr4_sys_utssys_args {
  156         syscallarg(void *) a1;
  157         syscallarg(void *) a2;
  158         syscallarg(int) sel;
  159         syscallarg(void *) a3;
  160 };
  161 
  162 struct svr4_sys_execve_args {
  163         syscallarg(const char *) path;
  164         syscallarg(char **) argp;
  165         syscallarg(char **) envp;
  166 };
  167 
  168 struct svr4_sys_fcntl_args {
  169         syscallarg(int) fd;
  170         syscallarg(int) cmd;
  171         syscallarg(char *) arg;
  172 };
  173 
  174 struct svr4_sys_ulimit_args {
  175         syscallarg(int) cmd;
  176         syscallarg(long) newlimit;
  177 };
  178 
  179 struct svr4_sys_getdents_args {
  180         syscallarg(int) fd;
  181         syscallarg(char *) buf;
  182         syscallarg(int) nbytes;
  183 };
  184 
  185 struct svr4_sys_getmsg_args {
  186         syscallarg(int) fd;
  187         syscallarg(struct svr4_strbuf *) ctl;
  188         syscallarg(struct svr4_strbuf *) dat;
  189         syscallarg(int *) flags;
  190 };
  191 
  192 struct svr4_sys_putmsg_args {
  193         syscallarg(int) fd;
  194         syscallarg(struct svr4_strbuf *) ctl;
  195         syscallarg(struct svr4_strbuf *) dat;
  196         syscallarg(int) flags;
  197 };
  198 
  199 struct svr4_sys_lstat_args {
  200         syscallarg(const char *) path;
  201         syscallarg(struct svr4_stat *) ub;
  202 };
  203 
  204 struct svr4_sys_sigprocmask_args {
  205         syscallarg(int) how;
  206         syscallarg(const svr4_sigset_t *) set;
  207         syscallarg(svr4_sigset_t *) oset;
  208 };
  209 
  210 struct svr4_sys_sigsuspend_args {
  211         syscallarg(const svr4_sigset_t *) set;
  212 };
  213 
  214 struct svr4_sys_sigaltstack_args {
  215         syscallarg(const struct svr4_sigaltstack *) nss;
  216         syscallarg(struct svr4_sigaltstack *) oss;
  217 };
  218 
  219 struct svr4_sys_sigaction_args {
  220         syscallarg(int) signum;
  221         syscallarg(const struct svr4_sigaction *) nsa;
  222         syscallarg(struct svr4_sigaction *) osa;
  223 };
  224 
  225 struct svr4_sys_sigpending_args {
  226         syscallarg(int) what;
  227         syscallarg(svr4_sigset_t *) set;
  228 };
  229 
  230 struct svr4_sys_context_args {
  231         syscallarg(int) func;
  232         syscallarg(struct svr4_ucontext *) uc;
  233 };
  234 
  235 struct svr4_sys_statvfs_args {
  236         syscallarg(const char *) path;
  237         syscallarg(struct svr4_statvfs *) fs;
  238 };
  239 
  240 struct svr4_sys_fstatvfs_args {
  241         syscallarg(int) fd;
  242         syscallarg(struct svr4_statvfs *) fs;
  243 };
  244 
  245 struct svr4_sys_waitsys_args {
  246         syscallarg(int) grp;
  247         syscallarg(int) id;
  248         syscallarg(union svr4_siginfo *) info;
  249         syscallarg(int) options;
  250 };
  251 
  252 struct svr4_sys_hrtsys_args {
  253         syscallarg(int) cmd;
  254         syscallarg(int) fun;
  255         syscallarg(int) sub;
  256         syscallarg(void *) rv1;
  257         syscallarg(void *) rv2;
  258 };
  259 
  260 struct svr4_sys_pathconf_args {
  261         syscallarg(const char *) path;
  262         syscallarg(int) name;
  263 };
  264 
  265 struct svr4_sys_mmap_args {
  266         syscallarg(void *) addr;
  267         syscallarg(svr4_size_t) len;
  268         syscallarg(int) prot;
  269         syscallarg(int) flags;
  270         syscallarg(int) fd;
  271         syscallarg(svr4_off_t) pos;
  272 };
  273 
  274 struct svr4_sys_fpathconf_args {
  275         syscallarg(int) fd;
  276         syscallarg(int) name;
  277 };
  278 
  279 struct svr4_sys_xstat_args {
  280         syscallarg(int) two;
  281         syscallarg(const char *) path;
  282         syscallarg(struct svr4_xstat *) ub;
  283 };
  284 
  285 struct svr4_sys_lxstat_args {
  286         syscallarg(int) two;
  287         syscallarg(const char *) path;
  288         syscallarg(struct svr4_xstat *) ub;
  289 };
  290 
  291 struct svr4_sys_fxstat_args {
  292         syscallarg(int) two;
  293         syscallarg(int) fd;
  294         syscallarg(struct svr4_xstat *) sb;
  295 };
  296 
  297 struct svr4_sys_xmknod_args {
  298         syscallarg(int) two;
  299         syscallarg(char *) path;
  300         syscallarg(svr4_mode_t) mode;
  301         syscallarg(svr4_dev_t) dev;
  302 };
  303 
  304 struct svr4_sys_setrlimit_args {
  305         syscallarg(int) which;
  306         syscallarg(const struct svr4_rlimit *) rlp;
  307 };
  308 
  309 struct svr4_sys_getrlimit_args {
  310         syscallarg(int) which;
  311         syscallarg(struct svr4_rlimit *) rlp;
  312 };
  313 
  314 struct svr4_sys_memcntl_args {
  315         syscallarg(void *) addr;
  316         syscallarg(svr4_size_t) len;
  317         syscallarg(int) cmd;
  318         syscallarg(void *) arg;
  319         syscallarg(int) attr;
  320         syscallarg(int) mask;
  321 };
  322 
  323 struct svr4_sys_uname_args {
  324         syscallarg(struct svr4_utsname *) name;
  325         syscallarg(int) dummy;
  326 };
  327 
  328 struct svr4_sys_sysconfig_args {
  329         syscallarg(int) name;
  330 };
  331 
  332 struct svr4_sys_systeminfo_args {
  333         syscallarg(int) what;
  334         syscallarg(char *) buf;
  335         syscallarg(long) len;
  336 };
  337 
  338 struct svr4_sys__lwp_info_args {
  339         syscallarg(struct svr4_lwpinfo *) lwpinfo;
  340 };
  341 
  342 struct svr4_sys_utimes_args {
  343         syscallarg(const char *) path;
  344         syscallarg(struct timeval *) tptr;
  345 };
  346 
  347 struct svr4_sys_gettimeofday_args {
  348         syscallarg(struct timeval *) tp;
  349 };
  350 
  351 struct svr4_sys__lwp_create_args {
  352         syscallarg(svr4_ucontext_t *) uc;
  353         syscallarg(unsigned long) flags;
  354         syscallarg(svr4_lwpid_t *) lwpid;
  355 };
  356 
  357 struct svr4_sys__lwp_suspend_args {
  358         syscallarg(svr4_lwpid_t) lwpid;
  359 };
  360 
  361 struct svr4_sys__lwp_continue_args {
  362         syscallarg(svr4_lwpid_t) lwpid;
  363 };
  364 
  365 struct svr4_sys__lwp_kill_args {
  366         syscallarg(svr4_lwpid_t) lwpid;
  367         syscallarg(int) signum;
  368 };
  369 
  370 struct svr4_sys__lwp_setprivate_args {
  371         syscallarg(void *) buffer;
  372 };
  373 
  374 struct svr4_sys__lwp_wait_args {
  375         syscallarg(svr4_lwpid_t) wait_for;
  376         syscallarg(svr4_lwpid_t *) departed_lwp;
  377 };
  378 
  379 struct svr4_sys_pread_args {
  380         syscallarg(int) fd;
  381         syscallarg(void *) buf;
  382         syscallarg(size_t) nbyte;
  383         syscallarg(svr4_off_t) off;
  384 };
  385 
  386 struct svr4_sys_pwrite_args {
  387         syscallarg(int) fd;
  388         syscallarg(const void *) buf;
  389         syscallarg(size_t) nbyte;
  390         syscallarg(svr4_off_t) off;
  391 };
  392 
  393 struct svr4_sys_llseek_args {
  394         syscallarg(int) fd;
  395         syscallarg(long) offset1;
  396         syscallarg(long) offset2;
  397         syscallarg(int) whence;
  398 };
  399 
  400 struct svr4_sys_acl_args {
  401         syscallarg(char *) path;
  402         syscallarg(int) cmd;
  403         syscallarg(int) num;
  404         syscallarg(struct svr4_aclent *) buf;
  405 };
  406 
  407 struct svr4_sys_auditsys_args {
  408         syscallarg(int) code;
  409         syscallarg(int) a1;
  410         syscallarg(int) a2;
  411         syscallarg(int) a3;
  412         syscallarg(int) a4;
  413         syscallarg(int) a5;
  414 };
  415 
  416 struct svr4_sys_facl_args {
  417         syscallarg(int) fd;
  418         syscallarg(int) cmd;
  419         syscallarg(int) num;
  420         syscallarg(struct svr4_aclent *) buf;
  421 };
  422 
  423 struct svr4_sys_schedctl_args {
  424         syscallarg(unsigned int) x;
  425         syscallarg(int) y;
  426         syscallarg(void **) z;
  427 };
  428 
  429 struct svr4_sys_resolvepath_args {
  430         syscallarg(const char *) path;
  431         syscallarg(char *) buf;
  432         syscallarg(size_t) bufsiz;
  433 };
  434 
  435 struct svr4_sys_getdents64_args {
  436         syscallarg(int) fd;
  437         syscallarg(struct svr4_dirent64 *) dp;
  438         syscallarg(int) nbytes;
  439 };
  440 
  441 struct svr4_sys_mmap64_args {
  442         syscallarg(void *) addr;
  443         syscallarg(svr4_size_t) len;
  444         syscallarg(int) prot;
  445         syscallarg(int) flags;
  446         syscallarg(int) fd;
  447         syscallarg(svr4_off64_t) pos;
  448 };
  449 
  450 struct svr4_sys_stat64_args {
  451         syscallarg(const char *) path;
  452         syscallarg(struct svr4_stat64 *) sb;
  453 };
  454 
  455 struct svr4_sys_lstat64_args {
  456         syscallarg(const char *) path;
  457         syscallarg(struct svr4_stat64 *) sb;
  458 };
  459 
  460 struct svr4_sys_fstat64_args {
  461         syscallarg(int) fd;
  462         syscallarg(struct svr4_stat64 *) sb;
  463 };
  464 
  465 struct svr4_sys_statvfs64_args {
  466         syscallarg(const char *) path;
  467         syscallarg(struct svr4_statvfs64 *) fs;
  468 };
  469 
  470 struct svr4_sys_fstatvfs64_args {
  471         syscallarg(int) fd;
  472         syscallarg(struct svr4_statvfs64 *) fs;
  473 };
  474 
  475 struct svr4_sys_setrlimit64_args {
  476         syscallarg(int) which;
  477         syscallarg(const struct svr4_rlimit64 *) rlp;
  478 };
  479 
  480 struct svr4_sys_getrlimit64_args {
  481         syscallarg(int) which;
  482         syscallarg(struct svr4_rlimit64 *) rlp;
  483 };
  484 
  485 struct svr4_sys_pread64_args {
  486         syscallarg(int) fd;
  487         syscallarg(void *) buf;
  488         syscallarg(size_t) nbyte;
  489         syscallarg(svr4_off64_t) off;
  490 };
  491 
  492 struct svr4_sys_pwrite64_args {
  493         syscallarg(int) fd;
  494         syscallarg(const void *) buf;
  495         syscallarg(size_t) nbyte;
  496         syscallarg(svr4_off64_t) off;
  497 };
  498 
  499 struct svr4_sys_creat64_args {
  500         syscallarg(char *) path;
  501         syscallarg(int) mode;
  502 };
  503 
  504 struct svr4_sys_open64_args {
  505         syscallarg(char *) path;
  506         syscallarg(int) flags;
  507         syscallarg(int) mode;
  508 };
  509 
  510 struct svr4_sys_socket_args {
  511         syscallarg(int) domain;
  512         syscallarg(int) type;
  513         syscallarg(int) protocol;
  514 };
  515 #if defined(NTP) || !defined(_KERNEL)
  516 #else
  517 #endif
  518 
  519 /*
  520  * System call prototypes.
  521  */
  522 
  523 int     sys_nosys(struct lwp *, void *, register_t *);
  524 
  525 int     sys_exit(struct lwp *, void *, register_t *);
  526 
  527 int     sys_fork(struct lwp *, void *, register_t *);
  528 
  529 int     sys_read(struct lwp *, void *, register_t *);
  530 
  531 int     sys_write(struct lwp *, void *, register_t *);
  532 
  533 int     svr4_sys_open(struct lwp *, void *, register_t *);
  534 
  535 int     sys_close(struct lwp *, void *, register_t *);
  536 
  537 int     svr4_sys_wait(struct lwp *, void *, register_t *);
  538 
  539 int     svr4_sys_creat(struct lwp *, void *, register_t *);
  540 
  541 int     sys_link(struct lwp *, void *, register_t *);
  542 
  543 int     sys_unlink(struct lwp *, void *, register_t *);
  544 
  545 int     svr4_sys_execv(struct lwp *, void *, register_t *);
  546 
  547 int     sys_chdir(struct lwp *, void *, register_t *);
  548 
  549 int     svr4_sys_time(struct lwp *, void *, register_t *);
  550 
  551 int     svr4_sys_mknod(struct lwp *, void *, register_t *);
  552 
  553 int     sys_chmod(struct lwp *, void *, register_t *);
  554 
  555 int     sys___posix_chown(struct lwp *, void *, register_t *);
  556 
  557 int     svr4_sys_break(struct lwp *, void *, register_t *);
  558 
  559 int     svr4_sys_stat(struct lwp *, void *, register_t *);
  560 
  561 int     compat_43_sys_lseek(struct lwp *, void *, register_t *);
  562 
  563 int     sys_getpid(struct lwp *, void *, register_t *);
  564 
  565 int     sys_setuid(struct lwp *, void *, register_t *);
  566 
  567 int     sys_getuid_with_euid(struct lwp *, void *, register_t *);
  568 
  569 int     svr4_sys_alarm(struct lwp *, void *, register_t *);
  570 
  571 int     svr4_sys_fstat(struct lwp *, void *, register_t *);
  572 
  573 int     svr4_sys_pause(struct lwp *, void *, register_t *);
  574 
  575 int     svr4_sys_utime(struct lwp *, void *, register_t *);
  576 
  577 int     svr4_sys_access(struct lwp *, void *, register_t *);
  578 
  579 int     svr4_sys_nice(struct lwp *, void *, register_t *);
  580 
  581 int     sys_sync(struct lwp *, void *, register_t *);
  582 
  583 int     svr4_sys_kill(struct lwp *, void *, register_t *);
  584 
  585 int     svr4_sys_pgrpsys(struct lwp *, void *, register_t *);
  586 
  587 int     sys_dup(struct lwp *, void *, register_t *);
  588 
  589 int     sys_pipe(struct lwp *, void *, register_t *);
  590 
  591 int     svr4_sys_times(struct lwp *, void *, register_t *);
  592 
  593 int     sys_setgid(struct lwp *, void *, register_t *);
  594 
  595 int     sys_getgid_with_egid(struct lwp *, void *, register_t *);
  596 
  597 int     svr4_sys_signal(struct lwp *, void *, register_t *);
  598 
  599 #ifdef SYSVMSG
  600 int     svr4_sys_msgsys(struct lwp *, void *, register_t *);
  601 
  602 #else
  603 #endif
  604 int     svr4_sys_sysarch(struct lwp *, void *, register_t *);
  605 
  606 #ifdef SYSVSHM
  607 int     svr4_sys_shmsys(struct lwp *, void *, register_t *);
  608 
  609 #else
  610 #endif
  611 #ifdef SYSVSEM
  612 int     svr4_sys_semsys(struct lwp *, void *, register_t *);
  613 
  614 #else
  615 #endif
  616 int     svr4_sys_ioctl(struct lwp *, void *, register_t *);
  617 
  618 int     svr4_sys_utssys(struct lwp *, void *, register_t *);
  619 
  620 int     sys_fsync(struct lwp *, void *, register_t *);
  621 
  622 int     svr4_sys_execve(struct lwp *, void *, register_t *);
  623 
  624 int     sys_umask(struct lwp *, void *, register_t *);
  625 
  626 int     sys_chroot(struct lwp *, void *, register_t *);
  627 
  628 int     svr4_sys_fcntl(struct lwp *, void *, register_t *);
  629 
  630 int     svr4_sys_ulimit(struct lwp *, void *, register_t *);
  631 
  632 int     sys_rmdir(struct lwp *, void *, register_t *);
  633 
  634 int     sys_mkdir(struct lwp *, void *, register_t *);
  635 
  636 int     svr4_sys_getdents(struct lwp *, void *, register_t *);
  637 
  638 int     svr4_sys_getmsg(struct lwp *, void *, register_t *);
  639 
  640 int     svr4_sys_putmsg(struct lwp *, void *, register_t *);
  641 
  642 int     sys_poll(struct lwp *, void *, register_t *);
  643 
  644 int     svr4_sys_lstat(struct lwp *, void *, register_t *);
  645 
  646 int     sys_symlink(struct lwp *, void *, register_t *);
  647 
  648 int     sys_readlink(struct lwp *, void *, register_t *);
  649 
  650 int     sys_getgroups(struct lwp *, void *, register_t *);
  651 
  652 int     sys_setgroups(struct lwp *, void *, register_t *);
  653 
  654 int     sys_fchmod(struct lwp *, void *, register_t *);
  655 
  656 int     sys___posix_fchown(struct lwp *, void *, register_t *);
  657 
  658 int     svr4_sys_sigprocmask(struct lwp *, void *, register_t *);
  659 
  660 int     svr4_sys_sigsuspend(struct lwp *, void *, register_t *);
  661 
  662 int     svr4_sys_sigaltstack(struct lwp *, void *, register_t *);
  663 
  664 int     svr4_sys_sigaction(struct lwp *, void *, register_t *);
  665 
  666 int     svr4_sys_sigpending(struct lwp *, void *, register_t *);
  667 
  668 int     svr4_sys_context(struct lwp *, void *, register_t *);
  669 
  670 int     svr4_sys_statvfs(struct lwp *, void *, register_t *);
  671 
  672 int     svr4_sys_fstatvfs(struct lwp *, void *, register_t *);
  673 
  674 int     svr4_sys_waitsys(struct lwp *, void *, register_t *);
  675 
  676 int     svr4_sys_hrtsys(struct lwp *, void *, register_t *);
  677 
  678 int     svr4_sys_pathconf(struct lwp *, void *, register_t *);
  679 
  680 int     svr4_sys_mmap(struct lwp *, void *, register_t *);
  681 
  682 int     sys_mprotect(struct lwp *, void *, register_t *);
  683 
  684 int     sys_munmap(struct lwp *, void *, register_t *);
  685 
  686 int     svr4_sys_fpathconf(struct lwp *, void *, register_t *);
  687 
  688 int     sys_vfork(struct lwp *, void *, register_t *);
  689 
  690 int     sys_fchdir(struct lwp *, void *, register_t *);
  691 
  692 int     sys_readv(struct lwp *, void *, register_t *);
  693 
  694 int     sys_writev(struct lwp *, void *, register_t *);
  695 
  696 int     svr4_sys_xstat(struct lwp *, void *, register_t *);
  697 
  698 int     svr4_sys_lxstat(struct lwp *, void *, register_t *);
  699 
  700 int     svr4_sys_fxstat(struct lwp *, void *, register_t *);
  701 
  702 int     svr4_sys_xmknod(struct lwp *, void *, register_t *);
  703 
  704 int     svr4_sys_setrlimit(struct lwp *, void *, register_t *);
  705 
  706 int     svr4_sys_getrlimit(struct lwp *, void *, register_t *);
  707 
  708 int     sys___posix_lchown(struct lwp *, void *, register_t *);
  709 
  710 int     svr4_sys_memcntl(struct lwp *, void *, register_t *);
  711 
  712 int     sys___posix_rename(struct lwp *, void *, register_t *);
  713 
  714 int     svr4_sys_uname(struct lwp *, void *, register_t *);
  715 
  716 int     sys_setegid(struct lwp *, void *, register_t *);
  717 
  718 int     svr4_sys_sysconfig(struct lwp *, void *, register_t *);
  719 
  720 int     sys_adjtime(struct lwp *, void *, register_t *);
  721 
  722 int     svr4_sys_systeminfo(struct lwp *, void *, register_t *);
  723 
  724 int     sys_seteuid(struct lwp *, void *, register_t *);
  725 
  726 int     svr4_sys__lwp_info(struct lwp *, void *, register_t *);
  727 
  728 int     sys_fchroot(struct lwp *, void *, register_t *);
  729 
  730 int     svr4_sys_utimes(struct lwp *, void *, register_t *);
  731 
  732 int     svr4_sys_vhangup(struct lwp *, void *, register_t *);
  733 
  734 int     svr4_sys_gettimeofday(struct lwp *, void *, register_t *);
  735 
  736 int     sys_getitimer(struct lwp *, void *, register_t *);
  737 
  738 int     sys_setitimer(struct lwp *, void *, register_t *);
  739 
  740 int     svr4_sys__lwp_create(struct lwp *, void *, register_t *);
  741 
  742 int     svr4_sys__lwp_exit(struct lwp *, void *, register_t *);
  743 
  744 int     svr4_sys__lwp_suspend(struct lwp *, void *, register_t *);
  745 
  746 int     svr4_sys__lwp_continue(struct lwp *, void *, register_t *);
  747 
  748 int     svr4_sys__lwp_kill(struct lwp *, void *, register_t *);
  749 
  750 int     svr4_sys__lwp_self(struct lwp *, void *, register_t *);
  751 
  752 int     svr4_sys__lwp_getprivate(struct lwp *, void *, register_t *);
  753 
  754 int     svr4_sys__lwp_setprivate(struct lwp *, void *, register_t *);
  755 
  756 int     svr4_sys__lwp_wait(struct lwp *, void *, register_t *);
  757 
  758 int     svr4_sys_pread(struct lwp *, void *, register_t *);
  759 
  760 int     svr4_sys_pwrite(struct lwp *, void *, register_t *);
  761 
  762 int     svr4_sys_llseek(struct lwp *, void *, register_t *);
  763 
  764 int     svr4_sys_acl(struct lwp *, void *, register_t *);
  765 
  766 int     svr4_sys_auditsys(struct lwp *, void *, register_t *);
  767 
  768 int     sys_nanosleep(struct lwp *, void *, register_t *);
  769 
  770 int     svr4_sys_facl(struct lwp *, void *, register_t *);
  771 
  772 int     sys_setreuid(struct lwp *, void *, register_t *);
  773 
  774 int     sys_setregid(struct lwp *, void *, register_t *);
  775 
  776 int     svr4_sys_schedctl(struct lwp *, void *, register_t *);
  777 
  778 int     svr4_sys_resolvepath(struct lwp *, void *, register_t *);
  779 
  780 int     svr4_sys_getdents64(struct lwp *, void *, register_t *);
  781 
  782 int     svr4_sys_mmap64(struct lwp *, void *, register_t *);
  783 
  784 int     svr4_sys_stat64(struct lwp *, void *, register_t *);
  785 
  786 int     svr4_sys_lstat64(struct lwp *, void *, register_t *);
  787 
  788 int     svr4_sys_fstat64(struct lwp *, void *, register_t *);
  789 
  790 int     svr4_sys_statvfs64(struct lwp *, void *, register_t *);
  791 
  792 int     svr4_sys_fstatvfs64(struct lwp *, void *, register_t *);
  793 
  794 int     svr4_sys_setrlimit64(struct lwp *, void *, register_t *);
  795 
  796 int     svr4_sys_getrlimit64(struct lwp *, void *, register_t *);
  797 
  798 int     svr4_sys_pread64(struct lwp *, void *, register_t *);
  799 
  800 int     svr4_sys_pwrite64(struct lwp *, void *, register_t *);
  801 
  802 int     svr4_sys_creat64(struct lwp *, void *, register_t *);
  803 
  804 int     svr4_sys_open64(struct lwp *, void *, register_t *);
  805 
  806 int     svr4_sys_socket(struct lwp *, void *, register_t *);
  807 
  808 int     sys_socketpair(struct lwp *, void *, register_t *);
  809 
  810 int     sys_bind(struct lwp *, void *, register_t *);
  811 
  812 int     sys_listen(struct lwp *, void *, register_t *);
  813 
  814 int     compat_43_sys_accept(struct lwp *, void *, register_t *);
  815 
  816 int     sys_connect(struct lwp *, void *, register_t *);
  817 
  818 int     sys_shutdown(struct lwp *, void *, register_t *);
  819 
  820 int     compat_43_sys_recv(struct lwp *, void *, register_t *);
  821 
  822 int     compat_43_sys_recvfrom(struct lwp *, void *, register_t *);
  823 
  824 int     compat_43_sys_recvmsg(struct lwp *, void *, register_t *);
  825 
  826 int     compat_43_sys_send(struct lwp *, void *, register_t *);
  827 
  828 int     compat_43_sys_sendmsg(struct lwp *, void *, register_t *);
  829 
  830 int     sys_sendto(struct lwp *, void *, register_t *);
  831 
  832 int     compat_43_sys_getpeername(struct lwp *, void *, register_t *);
  833 
  834 int     compat_43_sys_getsockname(struct lwp *, void *, register_t *);
  835 
  836 int     sys_getsockopt(struct lwp *, void *, register_t *);
  837 
  838 int     sys_setsockopt(struct lwp *, void *, register_t *);
  839 
  840 #if defined(NTP) || !defined(_KERNEL)
  841 int     sys_ntp_adjtime(struct lwp *, void *, register_t *);
  842 
  843 #else
  844 #endif
  845 #endif /* _SVR4_SYS_SYSCALLARGS_H_ */

Cache object: dfd29b94cda93067ae6fd9783f9e865a


[ 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.