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_32/svr4_32_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_32_syscallargs.h,v 1.13 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.9 2006/05/29 09:44:51 drochner Exp
    8  */
    9 
   10 #ifndef _SVR4_32_SYS_SYSCALLARGS_H_
   11 #define _SVR4_32_SYS_SYSCALLARGS_H_
   12 
   13 #ifdef  syscallarg
   14 #undef  syscallarg
   15 #endif
   16 
   17 #define syscallarg(x)                                                   \
   18         union {                                                         \
   19                 register32_t pad;                                               \
   20                 struct { x datum; } le;                                 \
   21                 struct { /* LINTED zero array dimension */              \
   22                         int8_t pad[  /* CONSTCOND */                    \
   23                                 (sizeof (register32_t) < sizeof (x))    \
   24                                 ? 0                                     \
   25                                 : sizeof (register32_t) - sizeof (x)];  \
   26                         x datum;                                        \
   27                 } be;                                                   \
   28         }
   29 
   30 struct svr4_32_sys_open_args {
   31         syscallarg(const netbsd32_charp) path;
   32         syscallarg(int) flags;
   33         syscallarg(int) mode;
   34 };
   35 
   36 struct svr4_32_sys_wait_args {
   37         syscallarg(netbsd32_intp) status;
   38 };
   39 
   40 struct svr4_32_sys_creat_args {
   41         syscallarg(const netbsd32_charp) path;
   42         syscallarg(int) mode;
   43 };
   44 
   45 struct svr4_32_sys_execv_args {
   46         syscallarg(const netbsd32_charp) path;
   47         syscallarg(netbsd32_charpp) argp;
   48 };
   49 
   50 struct svr4_32_sys_time_args {
   51         syscallarg(svr4_32_time_tp) t;
   52 };
   53 
   54 struct svr4_32_sys_mknod_args {
   55         syscallarg(const netbsd32_charp) path;
   56         syscallarg(int) mode;
   57         syscallarg(int) dev;
   58 };
   59 
   60 struct svr4_32_sys_break_args {
   61         syscallarg(netbsd32_caddr_t) nsize;
   62 };
   63 
   64 struct svr4_32_sys_stat_args {
   65         syscallarg(const netbsd32_charp) path;
   66         syscallarg(svr4_32_statp) ub;
   67 };
   68 
   69 struct svr4_32_sys_alarm_args {
   70         syscallarg(unsigned) sec;
   71 };
   72 
   73 struct svr4_32_sys_fstat_args {
   74         syscallarg(int) fd;
   75         syscallarg(svr4_32_statp) sb;
   76 };
   77 
   78 struct svr4_32_sys_utime_args {
   79         syscallarg(const netbsd32_charp) path;
   80         syscallarg(svr4_32_utimbufp) ubuf;
   81 };
   82 
   83 struct svr4_32_sys_access_args {
   84         syscallarg(const netbsd32_charp) path;
   85         syscallarg(int) flags;
   86 };
   87 
   88 struct svr4_32_sys_nice_args {
   89         syscallarg(int) prio;
   90 };
   91 
   92 struct svr4_32_sys_kill_args {
   93         syscallarg(int) pid;
   94         syscallarg(int) signum;
   95 };
   96 
   97 struct svr4_32_sys_pgrpsys_args {
   98         syscallarg(int) cmd;
   99         syscallarg(int) pid;
  100         syscallarg(int) pgid;
  101 };
  102 
  103 struct svr4_32_sys_times_args {
  104         syscallarg(svr4_32_tms_tp) tp;
  105 };
  106 
  107 struct svr4_32_sys_signal_args {
  108         syscallarg(int) signum;
  109         syscallarg(svr4_sig_t) handler;
  110 };
  111 #ifdef SYSVMSG
  112 
  113 struct svr4_32_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_32_sys_sysarch_args {
  124         syscallarg(int) op;
  125         syscallarg(netbsd32_voidp) a1;
  126 };
  127 #ifdef SYSVSHM
  128 
  129 struct svr4_32_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_32_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_32_sys_ioctl_args {
  150         syscallarg(int) fd;
  151         syscallarg(netbsd32_u_long) com;
  152         syscallarg(netbsd32_caddr_t) data;
  153 };
  154 
  155 struct svr4_32_sys_utssys_args {
  156         syscallarg(netbsd32_voidp) a1;
  157         syscallarg(netbsd32_voidp) a2;
  158         syscallarg(int) sel;
  159         syscallarg(netbsd32_voidp) a3;
  160 };
  161 
  162 struct svr4_32_sys_fcntl_args {
  163         syscallarg(int) fd;
  164         syscallarg(int) cmd;
  165         syscallarg(netbsd32_charp) arg;
  166 };
  167 
  168 struct svr4_32_sys_ulimit_args {
  169         syscallarg(int) cmd;
  170         syscallarg(netbsd32_long) newlimit;
  171 };
  172 
  173 struct svr4_32_sys_getdents_args {
  174         syscallarg(int) fd;
  175         syscallarg(netbsd32_charp) buf;
  176         syscallarg(int) nbytes;
  177 };
  178 
  179 struct svr4_32_sys_getmsg_args {
  180         syscallarg(int) fd;
  181         syscallarg(svr4_32_strbuf_tp) ctl;
  182         syscallarg(svr4_32_strbuf_tp) dat;
  183         syscallarg(netbsd32_intp) flags;
  184 };
  185 
  186 struct svr4_32_sys_putmsg_args {
  187         syscallarg(int) fd;
  188         syscallarg(svr4_32_strbuf_tp) ctl;
  189         syscallarg(svr4_32_strbuf_tp) dat;
  190         syscallarg(int) flags;
  191 };
  192 
  193 struct svr4_32_sys_lstat_args {
  194         syscallarg(const netbsd32_charp) path;
  195         syscallarg(svr4_32_stat_tp) ub;
  196 };
  197 
  198 struct svr4_32_sys_sigprocmask_args {
  199         syscallarg(int) how;
  200         syscallarg(const svr4_32_sigset_tp) set;
  201         syscallarg(svr4_32_sigset_tp) oset;
  202 };
  203 
  204 struct svr4_32_sys_sigsuspend_args {
  205         syscallarg(const svr4_32_sigset_tp) set;
  206 };
  207 
  208 struct svr4_32_sys_sigaltstack_args {
  209         syscallarg(const svr4_32_sigaltstack_tp) nss;
  210         syscallarg(svr4_32_sigaltstack_tp) oss;
  211 };
  212 
  213 struct svr4_32_sys_sigaction_args {
  214         syscallarg(int) signum;
  215         syscallarg(const svr4_32_sigaction_tp) nsa;
  216         syscallarg(svr4_32_sigaction_tp) osa;
  217 };
  218 
  219 struct svr4_32_sys_sigpending_args {
  220         syscallarg(int) what;
  221         syscallarg(svr4_32_sigset_tp) set;
  222 };
  223 
  224 struct svr4_32_sys_context_args {
  225         syscallarg(int) func;
  226         syscallarg(svr4_32_ucontext_tp) uc;
  227 };
  228 
  229 struct svr4_32_sys_statvfs_args {
  230         syscallarg(const netbsd32_charp) path;
  231         syscallarg(svr4_32_statvfs_tp) fs;
  232 };
  233 
  234 struct svr4_32_sys_fstatvfs_args {
  235         syscallarg(int) fd;
  236         syscallarg(svr4_32_statvfs_tp) fs;
  237 };
  238 
  239 struct svr4_32_sys_waitsys_args {
  240         syscallarg(int) grp;
  241         syscallarg(int) id;
  242         syscallarg(svr4_32_siginfo_tp) info;
  243         syscallarg(int) options;
  244 };
  245 
  246 struct svr4_32_sys_hrtsys_args {
  247         syscallarg(int) cmd;
  248         syscallarg(int) fun;
  249         syscallarg(int) sub;
  250         syscallarg(netbsd32_voidp) rv1;
  251         syscallarg(netbsd32_voidp) rv2;
  252 };
  253 
  254 struct svr4_32_sys_pathconf_args {
  255         syscallarg(const netbsd32_charp) path;
  256         syscallarg(int) name;
  257 };
  258 
  259 struct svr4_32_sys_mmap_args {
  260         syscallarg(netbsd32_voidp) addr;
  261         syscallarg(svr4_32_size_t) len;
  262         syscallarg(int) prot;
  263         syscallarg(int) flags;
  264         syscallarg(int) fd;
  265         syscallarg(svr4_32_off_t) pos;
  266 };
  267 
  268 struct svr4_32_sys_fpathconf_args {
  269         syscallarg(int) fd;
  270         syscallarg(int) name;
  271 };
  272 
  273 struct svr4_32_sys_xstat_args {
  274         syscallarg(int) two;
  275         syscallarg(const netbsd32_charp) path;
  276         syscallarg(svr4_32_xstat_tp) ub;
  277 };
  278 
  279 struct svr4_32_sys_lxstat_args {
  280         syscallarg(int) two;
  281         syscallarg(const netbsd32_charp) path;
  282         syscallarg(svr4_32_xstat_tp) ub;
  283 };
  284 
  285 struct svr4_32_sys_fxstat_args {
  286         syscallarg(int) two;
  287         syscallarg(int) fd;
  288         syscallarg(svr4_32_xstat_tp) sb;
  289 };
  290 
  291 struct svr4_32_sys_xmknod_args {
  292         syscallarg(int) two;
  293         syscallarg(netbsd32_charp) path;
  294         syscallarg(svr4_32_mode_t) mode;
  295         syscallarg(svr4_dev_t) dev;
  296 };
  297 
  298 struct svr4_32_sys_setrlimit_args {
  299         syscallarg(int) which;
  300         syscallarg(const svr4_32_rlimit_tp) rlp;
  301 };
  302 
  303 struct svr4_32_sys_getrlimit_args {
  304         syscallarg(int) which;
  305         syscallarg(svr4_32_rlimit_tp) rlp;
  306 };
  307 
  308 struct svr4_32_sys_memcntl_args {
  309         syscallarg(netbsd32_voidp) addr;
  310         syscallarg(svr4_32_size_t) len;
  311         syscallarg(int) cmd;
  312         syscallarg(netbsd32_voidp) arg;
  313         syscallarg(int) attr;
  314         syscallarg(int) mask;
  315 };
  316 
  317 struct svr4_32_sys_uname_args {
  318         syscallarg(svr4_32_utsnamep) name;
  319         syscallarg(int) dummy;
  320 };
  321 
  322 struct svr4_32_sys_sysconfig_args {
  323         syscallarg(int) name;
  324 };
  325 
  326 struct svr4_32_sys_systeminfo_args {
  327         syscallarg(int) what;
  328         syscallarg(netbsd32_charp) buf;
  329         syscallarg(netbsd32_long) len;
  330 };
  331 
  332 struct svr4_32_sys__lwp_info_args {
  333         syscallarg(svr4_32_lwpinfop) lwpinfo;
  334 };
  335 
  336 struct svr4_32_sys_utimes_args {
  337         syscallarg(const netbsd32_charp) path;
  338         syscallarg(netbsd32_timevalp_t) tptr;
  339 };
  340 
  341 struct svr4_32_sys_gettimeofday_args {
  342         syscallarg(netbsd32_timevalp_t) tp;
  343 };
  344 
  345 struct svr4_32_sys__lwp_create_args {
  346         syscallarg(svr4_32_ucontext_tp) uc;
  347         syscallarg(netbsd32_u_long) flags;
  348         syscallarg(svr4_32_lwpid_tp) lwpid;
  349 };
  350 
  351 struct svr4_32_sys__lwp_suspend_args {
  352         syscallarg(svr4_lwpid_t) lwpid;
  353 };
  354 
  355 struct svr4_32_sys__lwp_continue_args {
  356         syscallarg(svr4_lwpid_t) lwpid;
  357 };
  358 
  359 struct svr4_32_sys__lwp_kill_args {
  360         syscallarg(svr4_lwpid_t) lwpid;
  361         syscallarg(int) signum;
  362 };
  363 
  364 struct svr4_32_sys__lwp_setprivate_args {
  365         syscallarg(netbsd32_voidp) buffer;
  366 };
  367 
  368 struct svr4_32_sys__lwp_wait_args {
  369         syscallarg(svr4_lwpid_t) wait_for;
  370         syscallarg(svr4_32_lwpid_tp) departed_lwp;
  371 };
  372 
  373 struct svr4_32_sys_pread_args {
  374         syscallarg(int) fd;
  375         syscallarg(netbsd32_voidp) buf;
  376         syscallarg(netbsd32_size_t) nbyte;
  377         syscallarg(svr4_32_off_t) off;
  378 };
  379 
  380 struct svr4_32_sys_pwrite_args {
  381         syscallarg(int) fd;
  382         syscallarg(const netbsd32_voidp) buf;
  383         syscallarg(netbsd32_size_t) nbyte;
  384         syscallarg(svr4_32_off_t) off;
  385 };
  386 
  387 struct svr4_32_sys_llseek_args {
  388         syscallarg(int) fd;
  389         syscallarg(netbsd32_long) offset1;
  390         syscallarg(netbsd32_long) offset2;
  391         syscallarg(int) whence;
  392 };
  393 
  394 struct svr4_32_sys_acl_args {
  395         syscallarg(netbsd32_charp) path;
  396         syscallarg(int) cmd;
  397         syscallarg(int) num;
  398         syscallarg(svr4_32_aclent_tp) buf;
  399 };
  400 
  401 struct svr4_32_sys_auditsys_args {
  402         syscallarg(int) code;
  403         syscallarg(int) a1;
  404         syscallarg(int) a2;
  405         syscallarg(int) a3;
  406         syscallarg(int) a4;
  407         syscallarg(int) a5;
  408 };
  409 
  410 struct svr4_32_sys_facl_args {
  411         syscallarg(int) fd;
  412         syscallarg(int) cmd;
  413         syscallarg(int) num;
  414         syscallarg(svr4_32_aclent_tp) buf;
  415 };
  416 
  417 struct svr4_32_sys_schedctl_args {
  418         syscallarg(unsigned int) x;
  419         syscallarg(int) y;
  420         syscallarg(void **) z;
  421 };
  422 
  423 struct svr4_32_sys_resolvepath_args {
  424         syscallarg(const netbsd32_charp) path;
  425         syscallarg(netbsd32_charp) buf;
  426         syscallarg(netbsd32_size_t) bufsiz;
  427 };
  428 
  429 struct svr4_32_sys_getdents64_args {
  430         syscallarg(int) fd;
  431         syscallarg(svr4_32_dirent64_tp) dp;
  432         syscallarg(int) nbytes;
  433 };
  434 
  435 struct svr4_32_sys_mmap64_args {
  436         syscallarg(netbsd32_voidp) addr;
  437         syscallarg(svr4_32_size_t) len;
  438         syscallarg(int) prot;
  439         syscallarg(int) flags;
  440         syscallarg(int) fd;
  441         syscallarg(svr4_32_off64_t) pos;
  442 };
  443 
  444 struct svr4_32_sys_stat64_args {
  445         syscallarg(const netbsd32_charp) path;
  446         syscallarg(svr4_32_stat64_tp) sb;
  447 };
  448 
  449 struct svr4_32_sys_lstat64_args {
  450         syscallarg(const netbsd32_charp) path;
  451         syscallarg(svr4_32_stat64_tp) sb;
  452 };
  453 
  454 struct svr4_32_sys_fstat64_args {
  455         syscallarg(int) fd;
  456         syscallarg(svr4_32_stat64_tp) sb;
  457 };
  458 
  459 struct svr4_32_sys_statvfs64_args {
  460         syscallarg(const netbsd32_charp) path;
  461         syscallarg(svr4_32_statvfs64_tp) fs;
  462 };
  463 
  464 struct svr4_32_sys_fstatvfs64_args {
  465         syscallarg(int) fd;
  466         syscallarg(svr4_32_statvfs64_tp) fs;
  467 };
  468 
  469 struct svr4_32_sys_setrlimit64_args {
  470         syscallarg(int) which;
  471         syscallarg(const svr4_32_rlimit64_tp) rlp;
  472 };
  473 
  474 struct svr4_32_sys_getrlimit64_args {
  475         syscallarg(int) which;
  476         syscallarg(svr4_32_rlimit64_tp) rlp;
  477 };
  478 
  479 struct svr4_32_sys_pread64_args {
  480         syscallarg(int) fd;
  481         syscallarg(netbsd32_voidp) buf;
  482         syscallarg(netbsd32_size_t) nbyte;
  483         syscallarg(svr4_32_off64_t) off;
  484 };
  485 
  486 struct svr4_32_sys_pwrite64_args {
  487         syscallarg(int) fd;
  488         syscallarg(const netbsd32_voidp) buf;
  489         syscallarg(netbsd32_size_t) nbyte;
  490         syscallarg(svr4_32_off64_t) off;
  491 };
  492 
  493 struct svr4_32_sys_creat64_args {
  494         syscallarg(netbsd32_charp) path;
  495         syscallarg(int) mode;
  496 };
  497 
  498 struct svr4_32_sys_open64_args {
  499         syscallarg(netbsd32_charp) path;
  500         syscallarg(int) flags;
  501         syscallarg(int) mode;
  502 };
  503 
  504 struct svr4_32_sys_socket_args {
  505         syscallarg(int) domain;
  506         syscallarg(int) type;
  507         syscallarg(int) protocol;
  508 };
  509 #if defined(NTP) || !defined(_KERNEL)
  510 #else
  511 #endif
  512 
  513 /*
  514  * System call prototypes.
  515  */
  516 
  517 int     sys_nosys(struct lwp *, void *, register_t *);
  518 
  519 int     netbsd32_exit(struct lwp *, void *, register_t *);
  520 
  521 int     sys_fork(struct lwp *, void *, register_t *);
  522 
  523 int     netbsd32_read(struct lwp *, void *, register_t *);
  524 
  525 int     netbsd32_write(struct lwp *, void *, register_t *);
  526 
  527 int     svr4_32_sys_open(struct lwp *, void *, register_t *);
  528 
  529 int     netbsd32_close(struct lwp *, void *, register_t *);
  530 
  531 int     svr4_32_sys_wait(struct lwp *, void *, register_t *);
  532 
  533 int     svr4_32_sys_creat(struct lwp *, void *, register_t *);
  534 
  535 int     netbsd32_link(struct lwp *, void *, register_t *);
  536 
  537 int     netbsd32_unlink(struct lwp *, void *, register_t *);
  538 
  539 int     svr4_32_sys_execv(struct lwp *, void *, register_t *);
  540 
  541 int     netbsd32_chdir(struct lwp *, void *, register_t *);
  542 
  543 int     svr4_32_sys_time(struct lwp *, void *, register_t *);
  544 
  545 int     svr4_32_sys_mknod(struct lwp *, void *, register_t *);
  546 
  547 int     netbsd32_chmod(struct lwp *, void *, register_t *);
  548 
  549 int     netbsd32___posix_chown(struct lwp *, void *, register_t *);
  550 
  551 int     svr4_32_sys_break(struct lwp *, void *, register_t *);
  552 
  553 int     svr4_32_sys_stat(struct lwp *, void *, register_t *);
  554 
  555 int     compat_43_netbsd32_olseek(struct lwp *, void *, register_t *);
  556 
  557 int     sys_getpid(struct lwp *, void *, register_t *);
  558 
  559 int     netbsd32_setuid(struct lwp *, void *, register_t *);
  560 
  561 int     sys_getuid_with_euid(struct lwp *, void *, register_t *);
  562 
  563 int     svr4_32_sys_alarm(struct lwp *, void *, register_t *);
  564 
  565 int     svr4_32_sys_fstat(struct lwp *, void *, register_t *);
  566 
  567 int     svr4_32_sys_pause(struct lwp *, void *, register_t *);
  568 
  569 int     svr4_32_sys_utime(struct lwp *, void *, register_t *);
  570 
  571 int     svr4_32_sys_access(struct lwp *, void *, register_t *);
  572 
  573 int     svr4_32_sys_nice(struct lwp *, void *, register_t *);
  574 
  575 int     sys_sync(struct lwp *, void *, register_t *);
  576 
  577 int     svr4_32_sys_kill(struct lwp *, void *, register_t *);
  578 
  579 int     svr4_32_sys_pgrpsys(struct lwp *, void *, register_t *);
  580 
  581 int     netbsd32_dup(struct lwp *, void *, register_t *);
  582 
  583 int     sys_pipe(struct lwp *, void *, register_t *);
  584 
  585 int     svr4_32_sys_times(struct lwp *, void *, register_t *);
  586 
  587 int     netbsd32_setgid(struct lwp *, void *, register_t *);
  588 
  589 int     sys_getgid_with_egid(struct lwp *, void *, register_t *);
  590 
  591 int     svr4_32_sys_signal(struct lwp *, void *, register_t *);
  592 
  593 #ifdef SYSVMSG
  594 int     svr4_32_sys_msgsys(struct lwp *, void *, register_t *);
  595 
  596 #else
  597 #endif
  598 int     svr4_32_sys_sysarch(struct lwp *, void *, register_t *);
  599 
  600 #ifdef SYSVSHM
  601 int     svr4_32_sys_shmsys(struct lwp *, void *, register_t *);
  602 
  603 #else
  604 #endif
  605 #ifdef SYSVSEM
  606 int     svr4_32_sys_semsys(struct lwp *, void *, register_t *);
  607 
  608 #else
  609 #endif
  610 int     svr4_32_sys_ioctl(struct lwp *, void *, register_t *);
  611 
  612 int     svr4_32_sys_utssys(struct lwp *, void *, register_t *);
  613 
  614 int     netbsd32_fsync(struct lwp *, void *, register_t *);
  615 
  616 int     netbsd32_execve(struct lwp *, void *, register_t *);
  617 
  618 int     netbsd32_umask(struct lwp *, void *, register_t *);
  619 
  620 int     netbsd32_chroot(struct lwp *, void *, register_t *);
  621 
  622 int     svr4_32_sys_fcntl(struct lwp *, void *, register_t *);
  623 
  624 int     svr4_32_sys_ulimit(struct lwp *, void *, register_t *);
  625 
  626 int     netbsd32_rmdir(struct lwp *, void *, register_t *);
  627 
  628 int     netbsd32_mkdir(struct lwp *, void *, register_t *);
  629 
  630 int     svr4_32_sys_getdents(struct lwp *, void *, register_t *);
  631 
  632 int     svr4_32_sys_getmsg(struct lwp *, void *, register_t *);
  633 
  634 int     svr4_32_sys_putmsg(struct lwp *, void *, register_t *);
  635 
  636 int     netbsd32_poll(struct lwp *, void *, register_t *);
  637 
  638 int     svr4_32_sys_lstat(struct lwp *, void *, register_t *);
  639 
  640 int     netbsd32_symlink(struct lwp *, void *, register_t *);
  641 
  642 int     netbsd32_readlink(struct lwp *, void *, register_t *);
  643 
  644 int     netbsd32_getgroups(struct lwp *, void *, register_t *);
  645 
  646 int     netbsd32_setgroups(struct lwp *, void *, register_t *);
  647 
  648 int     netbsd32_fchmod(struct lwp *, void *, register_t *);
  649 
  650 int     netbsd32___posix_fchown(struct lwp *, void *, register_t *);
  651 
  652 int     svr4_32_sys_sigprocmask(struct lwp *, void *, register_t *);
  653 
  654 int     svr4_32_sys_sigsuspend(struct lwp *, void *, register_t *);
  655 
  656 int     svr4_32_sys_sigaltstack(struct lwp *, void *, register_t *);
  657 
  658 int     svr4_32_sys_sigaction(struct lwp *, void *, register_t *);
  659 
  660 int     svr4_32_sys_sigpending(struct lwp *, void *, register_t *);
  661 
  662 int     svr4_32_sys_context(struct lwp *, void *, register_t *);
  663 
  664 int     svr4_32_sys_statvfs(struct lwp *, void *, register_t *);
  665 
  666 int     svr4_32_sys_fstatvfs(struct lwp *, void *, register_t *);
  667 
  668 int     svr4_32_sys_waitsys(struct lwp *, void *, register_t *);
  669 
  670 int     svr4_32_sys_hrtsys(struct lwp *, void *, register_t *);
  671 
  672 int     svr4_32_sys_pathconf(struct lwp *, void *, register_t *);
  673 
  674 int     svr4_32_sys_mmap(struct lwp *, void *, register_t *);
  675 
  676 int     netbsd32_mprotect(struct lwp *, void *, register_t *);
  677 
  678 int     netbsd32_munmap(struct lwp *, void *, register_t *);
  679 
  680 int     svr4_32_sys_fpathconf(struct lwp *, void *, register_t *);
  681 
  682 int     sys_vfork(struct lwp *, void *, register_t *);
  683 
  684 int     netbsd32_fchdir(struct lwp *, void *, register_t *);
  685 
  686 int     netbsd32_readv(struct lwp *, void *, register_t *);
  687 
  688 int     netbsd32_writev(struct lwp *, void *, register_t *);
  689 
  690 int     svr4_32_sys_xstat(struct lwp *, void *, register_t *);
  691 
  692 int     svr4_32_sys_lxstat(struct lwp *, void *, register_t *);
  693 
  694 int     svr4_32_sys_fxstat(struct lwp *, void *, register_t *);
  695 
  696 int     svr4_32_sys_xmknod(struct lwp *, void *, register_t *);
  697 
  698 int     svr4_32_sys_setrlimit(struct lwp *, void *, register_t *);
  699 
  700 int     svr4_32_sys_getrlimit(struct lwp *, void *, register_t *);
  701 
  702 int     netbsd32_lchown(struct lwp *, void *, register_t *);
  703 
  704 int     svr4_32_sys_memcntl(struct lwp *, void *, register_t *);
  705 
  706 int     netbsd32___posix_rename(struct lwp *, void *, register_t *);
  707 
  708 int     svr4_32_sys_uname(struct lwp *, void *, register_t *);
  709 
  710 int     netbsd32_setegid(struct lwp *, void *, register_t *);
  711 
  712 int     svr4_32_sys_sysconfig(struct lwp *, void *, register_t *);
  713 
  714 int     netbsd32_adjtime(struct lwp *, void *, register_t *);
  715 
  716 int     svr4_32_sys_systeminfo(struct lwp *, void *, register_t *);
  717 
  718 int     netbsd32_seteuid(struct lwp *, void *, register_t *);
  719 
  720 int     svr4_32_sys__lwp_info(struct lwp *, void *, register_t *);
  721 
  722 int     netbsd32_fchroot(struct lwp *, void *, register_t *);
  723 
  724 int     svr4_32_sys_utimes(struct lwp *, void *, register_t *);
  725 
  726 int     svr4_32_sys_vhangup(struct lwp *, void *, register_t *);
  727 
  728 int     svr4_32_sys_gettimeofday(struct lwp *, void *, register_t *);
  729 
  730 int     netbsd32_getitimer(struct lwp *, void *, register_t *);
  731 
  732 int     netbsd32_setitimer(struct lwp *, void *, register_t *);
  733 
  734 int     svr4_32_sys__lwp_create(struct lwp *, void *, register_t *);
  735 
  736 int     svr4_32_sys__lwp_exit(struct lwp *, void *, register_t *);
  737 
  738 int     svr4_32_sys__lwp_suspend(struct lwp *, void *, register_t *);
  739 
  740 int     svr4_32_sys__lwp_continue(struct lwp *, void *, register_t *);
  741 
  742 int     svr4_32_sys__lwp_kill(struct lwp *, void *, register_t *);
  743 
  744 int     svr4_sys__lwp_self(struct lwp *, void *, register_t *);
  745 
  746 int     svr4_32_sys__lwp_getprivate(struct lwp *, void *, register_t *);
  747 
  748 int     svr4_32_sys__lwp_setprivate(struct lwp *, void *, register_t *);
  749 
  750 int     svr4_32_sys__lwp_wait(struct lwp *, void *, register_t *);
  751 
  752 int     svr4_32_sys_pread(struct lwp *, void *, register_t *);
  753 
  754 int     svr4_32_sys_pwrite(struct lwp *, void *, register_t *);
  755 
  756 int     svr4_32_sys_llseek(struct lwp *, void *, register_t *);
  757 
  758 int     svr4_32_sys_acl(struct lwp *, void *, register_t *);
  759 
  760 int     svr4_32_sys_auditsys(struct lwp *, void *, register_t *);
  761 
  762 int     netbsd32_nanosleep(struct lwp *, void *, register_t *);
  763 
  764 int     svr4_32_sys_facl(struct lwp *, void *, register_t *);
  765 
  766 int     netbsd32_setreuid(struct lwp *, void *, register_t *);
  767 
  768 int     netbsd32_setregid(struct lwp *, void *, register_t *);
  769 
  770 int     svr4_32_sys_schedctl(struct lwp *, void *, register_t *);
  771 
  772 int     svr4_32_sys_resolvepath(struct lwp *, void *, register_t *);
  773 
  774 int     svr4_32_sys_getdents64(struct lwp *, void *, register_t *);
  775 
  776 int     svr4_32_sys_mmap64(struct lwp *, void *, register_t *);
  777 
  778 int     svr4_32_sys_stat64(struct lwp *, void *, register_t *);
  779 
  780 int     svr4_32_sys_lstat64(struct lwp *, void *, register_t *);
  781 
  782 int     svr4_32_sys_fstat64(struct lwp *, void *, register_t *);
  783 
  784 int     svr4_32_sys_statvfs64(struct lwp *, void *, register_t *);
  785 
  786 int     svr4_32_sys_fstatvfs64(struct lwp *, void *, register_t *);
  787 
  788 int     svr4_32_sys_setrlimit64(struct lwp *, void *, register_t *);
  789 
  790 int     svr4_32_sys_getrlimit64(struct lwp *, void *, register_t *);
  791 
  792 int     svr4_32_sys_pread64(struct lwp *, void *, register_t *);
  793 
  794 int     svr4_32_sys_pwrite64(struct lwp *, void *, register_t *);
  795 
  796 int     svr4_32_sys_creat64(struct lwp *, void *, register_t *);
  797 
  798 int     svr4_32_sys_open64(struct lwp *, void *, register_t *);
  799 
  800 int     svr4_32_sys_socket(struct lwp *, void *, register_t *);
  801 
  802 int     netbsd32_socketpair(struct lwp *, void *, register_t *);
  803 
  804 int     netbsd32_bind(struct lwp *, void *, register_t *);
  805 
  806 int     netbsd32_listen(struct lwp *, void *, register_t *);
  807 
  808 int     compat_43_netbsd32_oaccept(struct lwp *, void *, register_t *);
  809 
  810 int     netbsd32_connect(struct lwp *, void *, register_t *);
  811 
  812 int     netbsd32_shutdown(struct lwp *, void *, register_t *);
  813 
  814 int     compat_43_netbsd32_orecv(struct lwp *, void *, register_t *);
  815 
  816 int     compat_43_netbsd32_orecvfrom(struct lwp *, void *, register_t *);
  817 
  818 int     compat_43_netbsd32_orecvmsg(struct lwp *, void *, register_t *);
  819 
  820 int     compat_43_netbsd32_osend(struct lwp *, void *, register_t *);
  821 
  822 int     compat_43_netbsd32_osendmsg(struct lwp *, void *, register_t *);
  823 
  824 int     netbsd32_sendto(struct lwp *, void *, register_t *);
  825 
  826 int     compat_43_netbsd32_ogetpeername(struct lwp *, void *, register_t *);
  827 
  828 int     compat_43_netbsd32_ogetsockname(struct lwp *, void *, register_t *);
  829 
  830 int     netbsd32_getsockopt(struct lwp *, void *, register_t *);
  831 
  832 int     netbsd32_setsockopt(struct lwp *, void *, register_t *);
  833 
  834 #if defined(NTP) || !defined(_KERNEL)
  835 int     netbsd32_ntp_adjtime(struct lwp *, void *, register_t *);
  836 
  837 #else
  838 #endif
  839 #endif /* _SVR4_32_SYS_SYSCALLARGS_H_ */

Cache object: cc34c7447777102da8f52c6de22d4faa


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