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/pecoff/pecoff_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: pecoff_syscallargs.h,v 1.27 2006/09/01 21:19:45 matt 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.25 2006/09/01 20:58:18 matt Exp
    8  */
    9 
   10 #ifndef _PECOFF_SYS_SYSCALLARGS_H_
   11 #define _PECOFF_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 pecoff_sys_open_args {
   31         syscallarg(const char *) path;
   32         syscallarg(int) flags;
   33         syscallarg(mode_t) mode;
   34 };
   35 
   36 struct pecoff_sys_link_args {
   37         syscallarg(const char *) path;
   38         syscallarg(const char *) link;
   39 };
   40 
   41 struct pecoff_sys_unlink_args {
   42         syscallarg(const char *) path;
   43 };
   44 
   45 struct pecoff_sys_chdir_args {
   46         syscallarg(const char *) path;
   47 };
   48 
   49 struct pecoff_sys_chmod_args {
   50         syscallarg(const char *) path;
   51         syscallarg(mode_t) mode;
   52 };
   53 
   54 struct pecoff_sys_chown_args {
   55         syscallarg(const char *) path;
   56         syscallarg(uid_t) uid;
   57         syscallarg(gid_t) gid;
   58 };
   59 #ifdef COMPAT_20
   60 #else
   61 #endif
   62 #ifdef COMPAT_43
   63 #else
   64 #endif
   65 
   66 struct pecoff_sys_unmount_args {
   67         syscallarg(const char *) path;
   68         syscallarg(int) flags;
   69 };
   70 #ifdef COMPAT_43
   71 #else
   72 #endif
   73 
   74 struct pecoff_sys_access_args {
   75         syscallarg(const char *) path;
   76         syscallarg(int) flags;
   77 };
   78 
   79 struct pecoff_sys_chflags_args {
   80         syscallarg(const char *) path;
   81         syscallarg(u_long) flags;
   82 };
   83 #if defined(KTRACE) || !defined(_KERNEL)
   84 #else
   85 #endif
   86 #ifdef COMPAT_43
   87 #else
   88 #endif
   89 
   90 struct pecoff_sys_revoke_args {
   91         syscallarg(const char *) path;
   92 };
   93 
   94 struct pecoff_sys_symlink_args {
   95         syscallarg(const char *) path;
   96         syscallarg(const char *) link;
   97 };
   98 
   99 struct pecoff_sys_readlink_args {
  100         syscallarg(const char *) path;
  101         syscallarg(char *) buf;
  102         syscallarg(size_t) count;
  103 };
  104 
  105 struct pecoff_sys_execve_args {
  106         syscallarg(const char *) path;
  107         syscallarg(char *const *) argp;
  108         syscallarg(char *const *) envp;
  109 };
  110 
  111 struct pecoff_sys_chroot_args {
  112         syscallarg(const char *) path;
  113 };
  114 
  115 struct pecoff_sys_rename_args {
  116         syscallarg(const char *) from;
  117         syscallarg(const char *) to;
  118 };
  119 
  120 struct pecoff_sys_rmdir_args {
  121         syscallarg(const char *) path;
  122 };
  123 
  124 struct pecoff_sys_utimes_args {
  125         syscallarg(const char *) path;
  126         syscallarg(const struct timeval *) tptr;
  127 };
  128 #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
  129 #else
  130 #endif
  131 
  132 struct pecoff_sys_statfs_args {
  133         syscallarg(const char *) path;
  134         syscallarg(struct statvfs12 *) buf;
  135 };
  136 #ifdef COMPAT_20
  137 #else
  138 #endif
  139 #ifdef COMPAT_30
  140 
  141 struct pecoff_compat_30_sys_getfh_args {
  142         syscallarg(const char *) fname;
  143         syscallarg(struct commpat_30_fhandle *) fhp;
  144 };
  145 #else
  146 #endif
  147 #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64)
  148 #else
  149 #endif
  150 #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64)
  151 #else
  152 #endif
  153 #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64)
  154 #else
  155 #endif
  156 #if defined(NTP) || !defined(_KERNEL)
  157 #else
  158 #endif
  159 #if defined(LFS) || !defined(_KERNEL)
  160 #else
  161 #endif
  162 
  163 struct pecoff_sys_pathconf_args {
  164         syscallarg(const char *) path;
  165         syscallarg(int) name;
  166 };
  167 
  168 struct pecoff_sys_truncate_args {
  169         syscallarg(const char *) path;
  170         syscallarg(int) pad;
  171         syscallarg(off_t) length;
  172 };
  173 
  174 struct pecoff_sys_undelete_args {
  175         syscallarg(const char *) path;
  176 };
  177 #if defined(LKM) || !defined(_KERNEL)
  178 #else   /* !LKM */
  179 #endif  /* !LKM */
  180 #if defined(SYSVSEM) || !defined(_KERNEL)
  181 #else
  182 #endif
  183 #if defined(SYSVMSG) || !defined(_KERNEL)
  184 #else
  185 #endif
  186 #if defined(SYSVSHM) || !defined(_KERNEL)
  187 #else
  188 #endif
  189 #if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
  190 #else
  191 #endif
  192 
  193 struct pecoff_sys___posix_rename_args {
  194         syscallarg(const char *) from;
  195         syscallarg(const char *) to;
  196 };
  197 #ifdef COMPAT_30
  198 #endif
  199 
  200 struct pecoff_sys_lchmod_args {
  201         syscallarg(const char *) path;
  202         syscallarg(mode_t) mode;
  203 };
  204 
  205 struct pecoff_sys_lchown_args {
  206         syscallarg(const char *) path;
  207         syscallarg(uid_t) uid;
  208         syscallarg(gid_t) gid;
  209 };
  210 
  211 struct pecoff_sys_lutimes_args {
  212         syscallarg(const char *) path;
  213         syscallarg(const struct timeval *) tptr;
  214 };
  215 #ifdef COMPAT_30
  216 
  217 struct pecoff_sys___stat13_args {
  218         syscallarg(const char *) path;
  219         syscallarg(struct stat30 *) ub;
  220 };
  221 
  222 struct pecoff_sys___lstat13_args {
  223         syscallarg(const char *) path;
  224         syscallarg(struct stat30 *) ub;
  225 };
  226 #endif
  227 
  228 struct pecoff_sys___posix_chown_args {
  229         syscallarg(const char *) path;
  230         syscallarg(uid_t) uid;
  231         syscallarg(gid_t) gid;
  232 };
  233 
  234 struct pecoff_sys___posix_lchown_args {
  235         syscallarg(const char *) path;
  236         syscallarg(uid_t) uid;
  237         syscallarg(gid_t) gid;
  238 };
  239 #if defined(KTRACE) || !defined(_KERNEL)
  240 #else
  241 #endif
  242 #ifdef COMPAT_16
  243 #else
  244 #endif
  245 #ifdef COMPAT_16
  246 #else
  247 #endif
  248 #ifdef COMPAT_30
  249 #else
  250 #endif
  251 #ifdef COMPAT_20
  252 #else
  253 #endif
  254 #if defined(SYSVSEM) || !defined(_KERNEL)
  255 #else
  256 #endif
  257 #if defined(SYSVMSG) || !defined(_KERNEL)
  258 #else
  259 #endif
  260 #if defined(SYSVSHM) || !defined(_KERNEL)
  261 #else
  262 #endif
  263 
  264 struct pecoff_sys_lchflags_args {
  265         syscallarg(const char *) path;
  266         syscallarg(u_long) flags;
  267 };
  268 #ifdef COMPAT_30
  269 #else
  270 #endif
  271 
  272 struct pecoff_sys___stat30_args {
  273         syscallarg(const char *) path;
  274         syscallarg(struct stat *) ub;
  275 };
  276 
  277 struct pecoff_sys___lstat30_args {
  278         syscallarg(const char *) path;
  279         syscallarg(struct stat *) ub;
  280 };
  281 #ifdef COMPAT_30
  282 #else
  283 #endif
  284 
  285 struct pecoff_sys___getfh30_args {
  286         syscallarg(const char *) fname;
  287         syscallarg(void *) fhp;
  288         syscallarg(size_t *) fh_size;
  289 };
  290 
  291 /*
  292  * System call prototypes.
  293  */
  294 
  295 int     sys_exit(struct lwp *, void *, register_t *);
  296 
  297 int     sys_fork(struct lwp *, void *, register_t *);
  298 
  299 int     sys_read(struct lwp *, void *, register_t *);
  300 
  301 int     sys_write(struct lwp *, void *, register_t *);
  302 
  303 int     pecoff_sys_open(struct lwp *, void *, register_t *);
  304 
  305 int     sys_close(struct lwp *, void *, register_t *);
  306 
  307 int     sys_wait4(struct lwp *, void *, register_t *);
  308 
  309 int     pecoff_sys_link(struct lwp *, void *, register_t *);
  310 
  311 int     pecoff_sys_unlink(struct lwp *, void *, register_t *);
  312 
  313 int     pecoff_sys_chdir(struct lwp *, void *, register_t *);
  314 
  315 int     sys_fchdir(struct lwp *, void *, register_t *);
  316 
  317 int     sys_mknod(struct lwp *, void *, register_t *);
  318 
  319 int     pecoff_sys_chmod(struct lwp *, void *, register_t *);
  320 
  321 int     pecoff_sys_chown(struct lwp *, void *, register_t *);
  322 
  323 int     sys_obreak(struct lwp *, void *, register_t *);
  324 
  325 #ifdef COMPAT_20
  326 int     compat_20_sys_getfsstat(struct lwp *, void *, register_t *);
  327 
  328 #else
  329 #endif
  330 #ifdef COMPAT_43
  331 int     sys_getpid_with_ppid(struct lwp *, void *, register_t *);
  332 
  333 #else
  334 int     sys_getpid(struct lwp *, void *, register_t *);
  335 
  336 #endif
  337 int     sys_mount(struct lwp *, void *, register_t *);
  338 
  339 int     pecoff_sys_unmount(struct lwp *, void *, register_t *);
  340 
  341 int     sys_setuid(struct lwp *, void *, register_t *);
  342 
  343 #ifdef COMPAT_43
  344 int     sys_getuid_with_euid(struct lwp *, void *, register_t *);
  345 
  346 #else
  347 int     sys_getuid(struct lwp *, void *, register_t *);
  348 
  349 #endif
  350 int     sys_geteuid(struct lwp *, void *, register_t *);
  351 
  352 int     sys_ptrace(struct lwp *, void *, register_t *);
  353 
  354 int     sys_recvmsg(struct lwp *, void *, register_t *);
  355 
  356 int     sys_sendmsg(struct lwp *, void *, register_t *);
  357 
  358 int     sys_recvfrom(struct lwp *, void *, register_t *);
  359 
  360 int     sys_accept(struct lwp *, void *, register_t *);
  361 
  362 int     sys_getpeername(struct lwp *, void *, register_t *);
  363 
  364 int     sys_getsockname(struct lwp *, void *, register_t *);
  365 
  366 int     pecoff_sys_access(struct lwp *, void *, register_t *);
  367 
  368 int     pecoff_sys_chflags(struct lwp *, void *, register_t *);
  369 
  370 int     sys_fchflags(struct lwp *, void *, register_t *);
  371 
  372 int     sys_sync(struct lwp *, void *, register_t *);
  373 
  374 int     sys_kill(struct lwp *, void *, register_t *);
  375 
  376 int     sys_getppid(struct lwp *, void *, register_t *);
  377 
  378 int     sys_dup(struct lwp *, void *, register_t *);
  379 
  380 int     sys_pipe(struct lwp *, void *, register_t *);
  381 
  382 int     sys_getegid(struct lwp *, void *, register_t *);
  383 
  384 int     sys_profil(struct lwp *, void *, register_t *);
  385 
  386 #if defined(KTRACE) || !defined(_KERNEL)
  387 int     sys_ktrace(struct lwp *, void *, register_t *);
  388 
  389 #else
  390 #endif
  391 #ifdef COMPAT_43
  392 int     sys_getgid_with_egid(struct lwp *, void *, register_t *);
  393 
  394 #else
  395 int     sys_getgid(struct lwp *, void *, register_t *);
  396 
  397 #endif
  398 int     sys___getlogin(struct lwp *, void *, register_t *);
  399 
  400 int     sys___setlogin(struct lwp *, void *, register_t *);
  401 
  402 int     sys_acct(struct lwp *, void *, register_t *);
  403 
  404 int     sys_ioctl(struct lwp *, void *, register_t *);
  405 
  406 int     pecoff_sys_revoke(struct lwp *, void *, register_t *);
  407 
  408 int     pecoff_sys_symlink(struct lwp *, void *, register_t *);
  409 
  410 int     pecoff_sys_readlink(struct lwp *, void *, register_t *);
  411 
  412 int     pecoff_sys_execve(struct lwp *, void *, register_t *);
  413 
  414 int     sys_umask(struct lwp *, void *, register_t *);
  415 
  416 int     pecoff_sys_chroot(struct lwp *, void *, register_t *);
  417 
  418 int     sys_vfork(struct lwp *, void *, register_t *);
  419 
  420 int     sys_sbrk(struct lwp *, void *, register_t *);
  421 
  422 int     sys_sstk(struct lwp *, void *, register_t *);
  423 
  424 int     sys_ovadvise(struct lwp *, void *, register_t *);
  425 
  426 int     sys_munmap(struct lwp *, void *, register_t *);
  427 
  428 int     sys_mprotect(struct lwp *, void *, register_t *);
  429 
  430 int     sys_madvise(struct lwp *, void *, register_t *);
  431 
  432 int     sys_mincore(struct lwp *, void *, register_t *);
  433 
  434 int     sys_getgroups(struct lwp *, void *, register_t *);
  435 
  436 int     sys_setgroups(struct lwp *, void *, register_t *);
  437 
  438 int     sys_getpgrp(struct lwp *, void *, register_t *);
  439 
  440 int     sys_setpgid(struct lwp *, void *, register_t *);
  441 
  442 int     sys_setitimer(struct lwp *, void *, register_t *);
  443 
  444 int     sys_getitimer(struct lwp *, void *, register_t *);
  445 
  446 int     sys_dup2(struct lwp *, void *, register_t *);
  447 
  448 int     sys_fcntl(struct lwp *, void *, register_t *);
  449 
  450 int     sys_select(struct lwp *, void *, register_t *);
  451 
  452 int     sys_fsync(struct lwp *, void *, register_t *);
  453 
  454 int     sys_setpriority(struct lwp *, void *, register_t *);
  455 
  456 int     compat_30_sys_socket(struct lwp *, void *, register_t *);
  457 
  458 int     sys_connect(struct lwp *, void *, register_t *);
  459 
  460 int     sys_getpriority(struct lwp *, void *, register_t *);
  461 
  462 int     sys_bind(struct lwp *, void *, register_t *);
  463 
  464 int     sys_setsockopt(struct lwp *, void *, register_t *);
  465 
  466 int     sys_listen(struct lwp *, void *, register_t *);
  467 
  468 int     sys_gettimeofday(struct lwp *, void *, register_t *);
  469 
  470 int     sys_getrusage(struct lwp *, void *, register_t *);
  471 
  472 int     sys_getsockopt(struct lwp *, void *, register_t *);
  473 
  474 int     sys_readv(struct lwp *, void *, register_t *);
  475 
  476 int     sys_writev(struct lwp *, void *, register_t *);
  477 
  478 int     sys_settimeofday(struct lwp *, void *, register_t *);
  479 
  480 int     sys_fchown(struct lwp *, void *, register_t *);
  481 
  482 int     sys_fchmod(struct lwp *, void *, register_t *);
  483 
  484 int     sys_setreuid(struct lwp *, void *, register_t *);
  485 
  486 int     sys_setregid(struct lwp *, void *, register_t *);
  487 
  488 int     pecoff_sys_rename(struct lwp *, void *, register_t *);
  489 
  490 int     sys_flock(struct lwp *, void *, register_t *);
  491 
  492 int     sys_mkfifo(struct lwp *, void *, register_t *);
  493 
  494 int     sys_sendto(struct lwp *, void *, register_t *);
  495 
  496 int     sys_shutdown(struct lwp *, void *, register_t *);
  497 
  498 int     sys_socketpair(struct lwp *, void *, register_t *);
  499 
  500 int     sys_mkdir(struct lwp *, void *, register_t *);
  501 
  502 int     pecoff_sys_rmdir(struct lwp *, void *, register_t *);
  503 
  504 int     pecoff_sys_utimes(struct lwp *, void *, register_t *);
  505 
  506 int     sys_adjtime(struct lwp *, void *, register_t *);
  507 
  508 int     sys_setsid(struct lwp *, void *, register_t *);
  509 
  510 int     sys_quotactl(struct lwp *, void *, register_t *);
  511 
  512 #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
  513 int     sys_nfssvc(struct lwp *, void *, register_t *);
  514 
  515 #else
  516 #endif
  517 int     pecoff_sys_statfs(struct lwp *, void *, register_t *);
  518 
  519 #ifdef COMPAT_20
  520 int     compat_20_sys_fstatfs(struct lwp *, void *, register_t *);
  521 
  522 #else
  523 #endif
  524 #ifdef COMPAT_30
  525 int     pecoff_compat_30_sys_getfh(struct lwp *, void *, register_t *);
  526 
  527 #else
  528 #endif
  529 int     sys_sysarch(struct lwp *, void *, register_t *);
  530 
  531 #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64)
  532 #else
  533 #endif
  534 #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64)
  535 #else
  536 #endif
  537 #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64)
  538 #else
  539 #endif
  540 int     sys_pread(struct lwp *, void *, register_t *);
  541 
  542 int     sys_pwrite(struct lwp *, void *, register_t *);
  543 
  544 #if defined(NTP) || !defined(_KERNEL)
  545 int     sys_ntp_adjtime(struct lwp *, void *, register_t *);
  546 
  547 #else
  548 #endif
  549 int     sys_setgid(struct lwp *, void *, register_t *);
  550 
  551 int     sys_setegid(struct lwp *, void *, register_t *);
  552 
  553 int     sys_seteuid(struct lwp *, void *, register_t *);
  554 
  555 #if defined(LFS) || !defined(_KERNEL)
  556 int     sys_lfs_bmapv(struct lwp *, void *, register_t *);
  557 
  558 int     sys_lfs_markv(struct lwp *, void *, register_t *);
  559 
  560 int     sys_lfs_segclean(struct lwp *, void *, register_t *);
  561 
  562 int     sys_lfs_segwait(struct lwp *, void *, register_t *);
  563 
  564 #else
  565 #endif
  566 int     pecoff_sys_pathconf(struct lwp *, void *, register_t *);
  567 
  568 int     sys_fpathconf(struct lwp *, void *, register_t *);
  569 
  570 int     sys_getrlimit(struct lwp *, void *, register_t *);
  571 
  572 int     sys_setrlimit(struct lwp *, void *, register_t *);
  573 
  574 int     sys_mmap(struct lwp *, void *, register_t *);
  575 
  576 int     sys_lseek(struct lwp *, void *, register_t *);
  577 
  578 int     pecoff_sys_truncate(struct lwp *, void *, register_t *);
  579 
  580 int     sys_ftruncate(struct lwp *, void *, register_t *);
  581 
  582 int     sys___sysctl(struct lwp *, void *, register_t *);
  583 
  584 int     sys_mlock(struct lwp *, void *, register_t *);
  585 
  586 int     sys_munlock(struct lwp *, void *, register_t *);
  587 
  588 int     pecoff_sys_undelete(struct lwp *, void *, register_t *);
  589 
  590 int     sys_futimes(struct lwp *, void *, register_t *);
  591 
  592 int     sys_getpgid(struct lwp *, void *, register_t *);
  593 
  594 int     sys_reboot(struct lwp *, void *, register_t *);
  595 
  596 int     sys_poll(struct lwp *, void *, register_t *);
  597 
  598 #if defined(LKM) || !defined(_KERNEL)
  599 int     sys_lkmnosys(struct lwp *, void *, register_t *);
  600 
  601 #else   /* !LKM */
  602 #endif  /* !LKM */
  603 #if defined(SYSVSEM) || !defined(_KERNEL)
  604 int     sys_semget(struct lwp *, void *, register_t *);
  605 
  606 int     sys_semop(struct lwp *, void *, register_t *);
  607 
  608 int     sys_semconfig(struct lwp *, void *, register_t *);
  609 
  610 #else
  611 #endif
  612 #if defined(SYSVMSG) || !defined(_KERNEL)
  613 int     sys_msgget(struct lwp *, void *, register_t *);
  614 
  615 int     sys_msgsnd(struct lwp *, void *, register_t *);
  616 
  617 int     sys_msgrcv(struct lwp *, void *, register_t *);
  618 
  619 #else
  620 #endif
  621 #if defined(SYSVSHM) || !defined(_KERNEL)
  622 int     sys_shmat(struct lwp *, void *, register_t *);
  623 
  624 int     sys_shmdt(struct lwp *, void *, register_t *);
  625 
  626 int     sys_shmget(struct lwp *, void *, register_t *);
  627 
  628 #else
  629 #endif
  630 int     sys_clock_gettime(struct lwp *, void *, register_t *);
  631 
  632 int     sys_clock_settime(struct lwp *, void *, register_t *);
  633 
  634 int     sys_clock_getres(struct lwp *, void *, register_t *);
  635 
  636 int     sys_timer_create(struct lwp *, void *, register_t *);
  637 
  638 int     sys_timer_delete(struct lwp *, void *, register_t *);
  639 
  640 int     sys_timer_settime(struct lwp *, void *, register_t *);
  641 
  642 int     sys_timer_gettime(struct lwp *, void *, register_t *);
  643 
  644 int     sys_timer_getoverrun(struct lwp *, void *, register_t *);
  645 
  646 int     sys_nanosleep(struct lwp *, void *, register_t *);
  647 
  648 int     sys_fdatasync(struct lwp *, void *, register_t *);
  649 
  650 int     sys_mlockall(struct lwp *, void *, register_t *);
  651 
  652 int     sys_munlockall(struct lwp *, void *, register_t *);
  653 
  654 int     sys___sigtimedwait(struct lwp *, void *, register_t *);
  655 
  656 #if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
  657 int     sys__ksem_init(struct lwp *, void *, register_t *);
  658 
  659 int     sys__ksem_open(struct lwp *, void *, register_t *);
  660 
  661 int     sys__ksem_unlink(struct lwp *, void *, register_t *);
  662 
  663 int     sys__ksem_close(struct lwp *, void *, register_t *);
  664 
  665 int     sys__ksem_post(struct lwp *, void *, register_t *);
  666 
  667 int     sys__ksem_wait(struct lwp *, void *, register_t *);
  668 
  669 int     sys__ksem_trywait(struct lwp *, void *, register_t *);
  670 
  671 int     sys__ksem_getvalue(struct lwp *, void *, register_t *);
  672 
  673 int     sys__ksem_destroy(struct lwp *, void *, register_t *);
  674 
  675 #else
  676 #endif
  677 int     pecoff_sys___posix_rename(struct lwp *, void *, register_t *);
  678 
  679 int     sys_swapctl(struct lwp *, void *, register_t *);
  680 
  681 #ifdef COMPAT_30
  682 int     compat_30_sys_getdents(struct lwp *, void *, register_t *);
  683 
  684 #endif
  685 int     sys_minherit(struct lwp *, void *, register_t *);
  686 
  687 int     pecoff_sys_lchmod(struct lwp *, void *, register_t *);
  688 
  689 int     pecoff_sys_lchown(struct lwp *, void *, register_t *);
  690 
  691 int     pecoff_sys_lutimes(struct lwp *, void *, register_t *);
  692 
  693 int     sys___msync13(struct lwp *, void *, register_t *);
  694 
  695 #ifdef COMPAT_30
  696 int     pecoff_sys___stat13(struct lwp *, void *, register_t *);
  697 
  698 int     compat_30_sys___fstat13(struct lwp *, void *, register_t *);
  699 
  700 int     pecoff_sys___lstat13(struct lwp *, void *, register_t *);
  701 
  702 #endif
  703 int     sys___sigaltstack14(struct lwp *, void *, register_t *);
  704 
  705 int     sys___vfork14(struct lwp *, void *, register_t *);
  706 
  707 int     pecoff_sys___posix_chown(struct lwp *, void *, register_t *);
  708 
  709 int     sys___posix_fchown(struct lwp *, void *, register_t *);
  710 
  711 int     pecoff_sys___posix_lchown(struct lwp *, void *, register_t *);
  712 
  713 int     sys_getsid(struct lwp *, void *, register_t *);
  714 
  715 int     sys___clone(struct lwp *, void *, register_t *);
  716 
  717 #if defined(KTRACE) || !defined(_KERNEL)
  718 int     sys_fktrace(struct lwp *, void *, register_t *);
  719 
  720 #else
  721 #endif
  722 int     sys_preadv(struct lwp *, void *, register_t *);
  723 
  724 int     sys_pwritev(struct lwp *, void *, register_t *);
  725 
  726 #ifdef COMPAT_16
  727 int     compat_16_sys___sigaction14(struct lwp *, void *, register_t *);
  728 
  729 #else
  730 #endif
  731 int     sys___sigpending14(struct lwp *, void *, register_t *);
  732 
  733 int     sys___sigprocmask14(struct lwp *, void *, register_t *);
  734 
  735 int     sys___sigsuspend14(struct lwp *, void *, register_t *);
  736 
  737 #ifdef COMPAT_16
  738 int     compat_16_sys___sigreturn14(struct lwp *, void *, register_t *);
  739 
  740 #else
  741 #endif
  742 int     sys___getcwd(struct lwp *, void *, register_t *);
  743 
  744 int     sys_fchroot(struct lwp *, void *, register_t *);
  745 
  746 #ifdef COMPAT_30
  747 int     compat_30_sys_fhopen(struct lwp *, void *, register_t *);
  748 
  749 int     compat_30_sys_fhstat(struct lwp *, void *, register_t *);
  750 
  751 #else
  752 #endif
  753 #ifdef COMPAT_20
  754 int     compat_20_sys_fhstatfs(struct lwp *, void *, register_t *);
  755 
  756 #else
  757 #endif
  758 #if defined(SYSVSEM) || !defined(_KERNEL)
  759 int     sys_____semctl13(struct lwp *, void *, register_t *);
  760 
  761 #else
  762 #endif
  763 #if defined(SYSVMSG) || !defined(_KERNEL)
  764 int     sys___msgctl13(struct lwp *, void *, register_t *);
  765 
  766 #else
  767 #endif
  768 #if defined(SYSVSHM) || !defined(_KERNEL)
  769 int     sys___shmctl13(struct lwp *, void *, register_t *);
  770 
  771 #else
  772 #endif
  773 int     pecoff_sys_lchflags(struct lwp *, void *, register_t *);
  774 
  775 int     sys_issetugid(struct lwp *, void *, register_t *);
  776 
  777 int     sys_utrace(struct lwp *, void *, register_t *);
  778 
  779 int     sys_getcontext(struct lwp *, void *, register_t *);
  780 
  781 int     sys_setcontext(struct lwp *, void *, register_t *);
  782 
  783 int     sys__lwp_create(struct lwp *, void *, register_t *);
  784 
  785 int     sys__lwp_exit(struct lwp *, void *, register_t *);
  786 
  787 int     sys__lwp_self(struct lwp *, void *, register_t *);
  788 
  789 int     sys__lwp_wait(struct lwp *, void *, register_t *);
  790 
  791 int     sys__lwp_suspend(struct lwp *, void *, register_t *);
  792 
  793 int     sys__lwp_continue(struct lwp *, void *, register_t *);
  794 
  795 int     sys__lwp_wakeup(struct lwp *, void *, register_t *);
  796 
  797 int     sys__lwp_getprivate(struct lwp *, void *, register_t *);
  798 
  799 int     sys__lwp_setprivate(struct lwp *, void *, register_t *);
  800 
  801 int     sys_sa_register(struct lwp *, void *, register_t *);
  802 
  803 int     sys_sa_stacks(struct lwp *, void *, register_t *);
  804 
  805 int     sys_sa_enable(struct lwp *, void *, register_t *);
  806 
  807 int     sys_sa_setconcurrency(struct lwp *, void *, register_t *);
  808 
  809 int     sys_sa_yield(struct lwp *, void *, register_t *);
  810 
  811 int     sys_sa_preempt(struct lwp *, void *, register_t *);
  812 
  813 int     sys___sigaction_sigtramp(struct lwp *, void *, register_t *);
  814 
  815 int     sys_pmc_get_info(struct lwp *, void *, register_t *);
  816 
  817 int     sys_pmc_control(struct lwp *, void *, register_t *);
  818 
  819 int     sys_rasctl(struct lwp *, void *, register_t *);
  820 
  821 int     sys_kqueue(struct lwp *, void *, register_t *);
  822 
  823 int     sys_kevent(struct lwp *, void *, register_t *);
  824 
  825 int     sys_fsync_range(struct lwp *, void *, register_t *);
  826 
  827 int     sys_uuidgen(struct lwp *, void *, register_t *);
  828 
  829 int     sys_getvfsstat(struct lwp *, void *, register_t *);
  830 
  831 int     sys_statvfs1(struct lwp *, void *, register_t *);
  832 
  833 int     sys_fstatvfs1(struct lwp *, void *, register_t *);
  834 
  835 #ifdef COMPAT_30
  836 int     compat_30_sys_fhstatvfs1(struct lwp *, void *, register_t *);
  837 
  838 #else
  839 #endif
  840 int     sys_extattrctl(struct lwp *, void *, register_t *);
  841 
  842 int     sys_extattr_set_file(struct lwp *, void *, register_t *);
  843 
  844 int     sys_extattr_get_file(struct lwp *, void *, register_t *);
  845 
  846 int     sys_extattr_delete_file(struct lwp *, void *, register_t *);
  847 
  848 int     sys_extattr_set_fd(struct lwp *, void *, register_t *);
  849 
  850 int     sys_extattr_get_fd(struct lwp *, void *, register_t *);
  851 
  852 int     sys_extattr_delete_fd(struct lwp *, void *, register_t *);
  853 
  854 int     sys_extattr_set_link(struct lwp *, void *, register_t *);
  855 
  856 int     sys_extattr_get_link(struct lwp *, void *, register_t *);
  857 
  858 int     sys_extattr_delete_link(struct lwp *, void *, register_t *);
  859 
  860 int     sys_extattr_list_fd(struct lwp *, void *, register_t *);
  861 
  862 int     sys_extattr_list_file(struct lwp *, void *, register_t *);
  863 
  864 int     sys_extattr_list_link(struct lwp *, void *, register_t *);
  865 
  866 int     sys_pselect(struct lwp *, void *, register_t *);
  867 
  868 int     sys_pollts(struct lwp *, void *, register_t *);
  869 
  870 int     sys_setxattr(struct lwp *, void *, register_t *);
  871 
  872 int     sys_lsetxattr(struct lwp *, void *, register_t *);
  873 
  874 int     sys_fsetxattr(struct lwp *, void *, register_t *);
  875 
  876 int     sys_getxattr(struct lwp *, void *, register_t *);
  877 
  878 int     sys_lgetxattr(struct lwp *, void *, register_t *);
  879 
  880 int     sys_fgetxattr(struct lwp *, void *, register_t *);
  881 
  882 int     sys_listxattr(struct lwp *, void *, register_t *);
  883 
  884 int     sys_llistxattr(struct lwp *, void *, register_t *);
  885 
  886 int     sys_flistxattr(struct lwp *, void *, register_t *);
  887 
  888 int     sys_removexattr(struct lwp *, void *, register_t *);
  889 
  890 int     sys_lremovexattr(struct lwp *, void *, register_t *);
  891 
  892 int     sys_fremovexattr(struct lwp *, void *, register_t *);
  893 
  894 int     pecoff_sys___stat30(struct lwp *, void *, register_t *);
  895 
  896 int     sys___fstat30(struct lwp *, void *, register_t *);
  897 
  898 int     pecoff_sys___lstat30(struct lwp *, void *, register_t *);
  899 
  900 int     sys___getdents30(struct lwp *, void *, register_t *);
  901 
  902 int     sys_posix_fadvise(struct lwp *, void *, register_t *);
  903 
  904 #ifdef COMPAT_30
  905 int     compat_30_sys___fhstat30(struct lwp *, void *, register_t *);
  906 
  907 #else
  908 #endif
  909 int     sys___ntp_gettime30(struct lwp *, void *, register_t *);
  910 
  911 int     sys___socket30(struct lwp *, void *, register_t *);
  912 
  913 int     pecoff_sys___getfh30(struct lwp *, void *, register_t *);
  914 
  915 int     sys___fhopen40(struct lwp *, void *, register_t *);
  916 
  917 int     sys___fhstatvfs140(struct lwp *, void *, register_t *);
  918 
  919 #endif /* _PECOFF_SYS_SYSCALLARGS_H_ */

Cache object: 1e14f48f746aaf0492491833a6bb86ba


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