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.13 2005/02/26 23:58:20 perry 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.11 2004/05/08 14:31:59 kent 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 
  140 struct pecoff_sys_getfh_args {
  141         syscallarg(const char *) fname;
  142         syscallarg(fhandle_t *) fhp;
  143 };
  144 #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64)
  145 #else
  146 #endif
  147 #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64)
  148 #else
  149 #endif
  150 #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64)
  151 #else
  152 #endif
  153 #if defined(NTP) || !defined(_KERNEL)
  154 #else
  155 #endif
  156 #if defined(LFS) || !defined(_KERNEL)
  157 #else
  158 #endif
  159 
  160 struct pecoff_sys_pathconf_args {
  161         syscallarg(const char *) path;
  162         syscallarg(int) name;
  163 };
  164 
  165 struct pecoff_sys_truncate_args {
  166         syscallarg(const char *) path;
  167         syscallarg(int) pad;
  168         syscallarg(off_t) length;
  169 };
  170 
  171 struct pecoff_sys_undelete_args {
  172         syscallarg(const char *) path;
  173 };
  174 #if defined(LKM) || !defined(_KERNEL)
  175 #else   /* !LKM */
  176 #endif  /* !LKM */
  177 #if defined(SYSVSEM) || !defined(_KERNEL)
  178 #else
  179 #endif
  180 #if defined(SYSVMSG) || !defined(_KERNEL)
  181 #else
  182 #endif
  183 #if defined(SYSVSHM) || !defined(_KERNEL)
  184 #else
  185 #endif
  186 #if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
  187 #else
  188 #endif
  189 
  190 struct pecoff_sys___posix_rename_args {
  191         syscallarg(const char *) from;
  192         syscallarg(const char *) to;
  193 };
  194 
  195 struct pecoff_sys_lchmod_args {
  196         syscallarg(const char *) path;
  197         syscallarg(mode_t) mode;
  198 };
  199 
  200 struct pecoff_sys_lchown_args {
  201         syscallarg(const char *) path;
  202         syscallarg(uid_t) uid;
  203         syscallarg(gid_t) gid;
  204 };
  205 
  206 struct pecoff_sys_lutimes_args {
  207         syscallarg(const char *) path;
  208         syscallarg(const struct timeval *) tptr;
  209 };
  210 
  211 struct pecoff_sys___stat13_args {
  212         syscallarg(const char *) path;
  213         syscallarg(struct stat *) ub;
  214 };
  215 
  216 struct pecoff_sys___lstat13_args {
  217         syscallarg(const char *) path;
  218         syscallarg(struct stat *) ub;
  219 };
  220 
  221 struct pecoff_sys___posix_chown_args {
  222         syscallarg(const char *) path;
  223         syscallarg(uid_t) uid;
  224         syscallarg(gid_t) gid;
  225 };
  226 
  227 struct pecoff_sys___posix_lchown_args {
  228         syscallarg(const char *) path;
  229         syscallarg(uid_t) uid;
  230         syscallarg(gid_t) gid;
  231 };
  232 #if defined(KTRACE) || !defined(_KERNEL)
  233 #else
  234 #endif
  235 #ifdef COMPAT_16
  236 #else
  237 #endif
  238 #ifdef COMPAT_20
  239 #else
  240 #endif
  241 #if defined(SYSVSEM) || !defined(_KERNEL)
  242 #else
  243 #endif
  244 #if defined(SYSVMSG) || !defined(_KERNEL)
  245 #else
  246 #endif
  247 #if defined(SYSVSHM) || !defined(_KERNEL)
  248 #else
  249 #endif
  250 
  251 struct pecoff_sys_lchflags_args {
  252         syscallarg(const char *) path;
  253         syscallarg(u_long) flags;
  254 };
  255 
  256 /*
  257  * System call prototypes.
  258  */
  259 
  260 int     sys_exit(struct lwp *, void *, register_t *);
  261 
  262 int     sys_fork(struct lwp *, void *, register_t *);
  263 
  264 int     sys_read(struct lwp *, void *, register_t *);
  265 
  266 int     sys_write(struct lwp *, void *, register_t *);
  267 
  268 int     pecoff_sys_open(struct lwp *, void *, register_t *);
  269 
  270 int     sys_close(struct lwp *, void *, register_t *);
  271 
  272 int     sys_wait4(struct lwp *, void *, register_t *);
  273 
  274 int     pecoff_sys_link(struct lwp *, void *, register_t *);
  275 
  276 int     pecoff_sys_unlink(struct lwp *, void *, register_t *);
  277 
  278 int     pecoff_sys_chdir(struct lwp *, void *, register_t *);
  279 
  280 int     sys_fchdir(struct lwp *, void *, register_t *);
  281 
  282 int     sys_mknod(struct lwp *, void *, register_t *);
  283 
  284 int     pecoff_sys_chmod(struct lwp *, void *, register_t *);
  285 
  286 int     pecoff_sys_chown(struct lwp *, void *, register_t *);
  287 
  288 int     sys_obreak(struct lwp *, void *, register_t *);
  289 
  290 #ifdef COMPAT_20
  291 int     compat_20_sys_getfsstat(struct lwp *, void *, register_t *);
  292 
  293 #else
  294 #endif
  295 #ifdef COMPAT_43
  296 int     sys_getpid_with_ppid(struct lwp *, void *, register_t *);
  297 
  298 #else
  299 int     sys_getpid(struct lwp *, void *, register_t *);
  300 
  301 #endif
  302 int     sys_mount(struct lwp *, void *, register_t *);
  303 
  304 int     pecoff_sys_unmount(struct lwp *, void *, register_t *);
  305 
  306 int     sys_setuid(struct lwp *, void *, register_t *);
  307 
  308 #ifdef COMPAT_43
  309 int     sys_getuid_with_euid(struct lwp *, void *, register_t *);
  310 
  311 #else
  312 int     sys_getuid(struct lwp *, void *, register_t *);
  313 
  314 #endif
  315 int     sys_geteuid(struct lwp *, void *, register_t *);
  316 
  317 int     sys_ptrace(struct lwp *, void *, register_t *);
  318 
  319 int     sys_recvmsg(struct lwp *, void *, register_t *);
  320 
  321 int     sys_sendmsg(struct lwp *, void *, register_t *);
  322 
  323 int     sys_recvfrom(struct lwp *, void *, register_t *);
  324 
  325 int     sys_accept(struct lwp *, void *, register_t *);
  326 
  327 int     sys_getpeername(struct lwp *, void *, register_t *);
  328 
  329 int     sys_getsockname(struct lwp *, void *, register_t *);
  330 
  331 int     pecoff_sys_access(struct lwp *, void *, register_t *);
  332 
  333 int     pecoff_sys_chflags(struct lwp *, void *, register_t *);
  334 
  335 int     sys_fchflags(struct lwp *, void *, register_t *);
  336 
  337 int     sys_sync(struct lwp *, void *, register_t *);
  338 
  339 int     sys_kill(struct lwp *, void *, register_t *);
  340 
  341 int     sys_getppid(struct lwp *, void *, register_t *);
  342 
  343 int     sys_dup(struct lwp *, void *, register_t *);
  344 
  345 int     sys_pipe(struct lwp *, void *, register_t *);
  346 
  347 int     sys_getegid(struct lwp *, void *, register_t *);
  348 
  349 int     sys_profil(struct lwp *, void *, register_t *);
  350 
  351 #if defined(KTRACE) || !defined(_KERNEL)
  352 int     sys_ktrace(struct lwp *, void *, register_t *);
  353 
  354 #else
  355 #endif
  356 #ifdef COMPAT_43
  357 int     sys_getgid_with_egid(struct lwp *, void *, register_t *);
  358 
  359 #else
  360 int     sys_getgid(struct lwp *, void *, register_t *);
  361 
  362 #endif
  363 int     sys___getlogin(struct lwp *, void *, register_t *);
  364 
  365 int     sys___setlogin(struct lwp *, void *, register_t *);
  366 
  367 int     sys_acct(struct lwp *, void *, register_t *);
  368 
  369 int     sys_ioctl(struct lwp *, void *, register_t *);
  370 
  371 int     pecoff_sys_revoke(struct lwp *, void *, register_t *);
  372 
  373 int     pecoff_sys_symlink(struct lwp *, void *, register_t *);
  374 
  375 int     pecoff_sys_readlink(struct lwp *, void *, register_t *);
  376 
  377 int     pecoff_sys_execve(struct lwp *, void *, register_t *);
  378 
  379 int     sys_umask(struct lwp *, void *, register_t *);
  380 
  381 int     pecoff_sys_chroot(struct lwp *, void *, register_t *);
  382 
  383 int     sys_vfork(struct lwp *, void *, register_t *);
  384 
  385 int     sys_sbrk(struct lwp *, void *, register_t *);
  386 
  387 int     sys_sstk(struct lwp *, void *, register_t *);
  388 
  389 int     sys_ovadvise(struct lwp *, void *, register_t *);
  390 
  391 int     sys_munmap(struct lwp *, void *, register_t *);
  392 
  393 int     sys_mprotect(struct lwp *, void *, register_t *);
  394 
  395 int     sys_madvise(struct lwp *, void *, register_t *);
  396 
  397 int     sys_mincore(struct lwp *, void *, register_t *);
  398 
  399 int     sys_getgroups(struct lwp *, void *, register_t *);
  400 
  401 int     sys_setgroups(struct lwp *, void *, register_t *);
  402 
  403 int     sys_getpgrp(struct lwp *, void *, register_t *);
  404 
  405 int     sys_setpgid(struct lwp *, void *, register_t *);
  406 
  407 int     sys_setitimer(struct lwp *, void *, register_t *);
  408 
  409 int     sys_getitimer(struct lwp *, void *, register_t *);
  410 
  411 int     sys_dup2(struct lwp *, void *, register_t *);
  412 
  413 int     sys_fcntl(struct lwp *, void *, register_t *);
  414 
  415 int     sys_select(struct lwp *, void *, register_t *);
  416 
  417 int     sys_fsync(struct lwp *, void *, register_t *);
  418 
  419 int     sys_setpriority(struct lwp *, void *, register_t *);
  420 
  421 int     sys_socket(struct lwp *, void *, register_t *);
  422 
  423 int     sys_connect(struct lwp *, void *, register_t *);
  424 
  425 int     sys_getpriority(struct lwp *, void *, register_t *);
  426 
  427 int     sys_bind(struct lwp *, void *, register_t *);
  428 
  429 int     sys_setsockopt(struct lwp *, void *, register_t *);
  430 
  431 int     sys_listen(struct lwp *, void *, register_t *);
  432 
  433 int     sys_gettimeofday(struct lwp *, void *, register_t *);
  434 
  435 int     sys_getrusage(struct lwp *, void *, register_t *);
  436 
  437 int     sys_getsockopt(struct lwp *, void *, register_t *);
  438 
  439 int     sys_readv(struct lwp *, void *, register_t *);
  440 
  441 int     sys_writev(struct lwp *, void *, register_t *);
  442 
  443 int     sys_settimeofday(struct lwp *, void *, register_t *);
  444 
  445 int     sys_fchown(struct lwp *, void *, register_t *);
  446 
  447 int     sys_fchmod(struct lwp *, void *, register_t *);
  448 
  449 int     sys_setreuid(struct lwp *, void *, register_t *);
  450 
  451 int     sys_setregid(struct lwp *, void *, register_t *);
  452 
  453 int     pecoff_sys_rename(struct lwp *, void *, register_t *);
  454 
  455 int     sys_flock(struct lwp *, void *, register_t *);
  456 
  457 int     sys_mkfifo(struct lwp *, void *, register_t *);
  458 
  459 int     sys_sendto(struct lwp *, void *, register_t *);
  460 
  461 int     sys_shutdown(struct lwp *, void *, register_t *);
  462 
  463 int     sys_socketpair(struct lwp *, void *, register_t *);
  464 
  465 int     sys_mkdir(struct lwp *, void *, register_t *);
  466 
  467 int     pecoff_sys_rmdir(struct lwp *, void *, register_t *);
  468 
  469 int     pecoff_sys_utimes(struct lwp *, void *, register_t *);
  470 
  471 int     sys_adjtime(struct lwp *, void *, register_t *);
  472 
  473 int     sys_setsid(struct lwp *, void *, register_t *);
  474 
  475 int     sys_quotactl(struct lwp *, void *, register_t *);
  476 
  477 #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
  478 int     sys_nfssvc(struct lwp *, void *, register_t *);
  479 
  480 #else
  481 #endif
  482 int     pecoff_sys_statfs(struct lwp *, void *, register_t *);
  483 
  484 #ifdef COMPAT_20
  485 int     compat_20_sys_fstatfs(struct lwp *, void *, register_t *);
  486 
  487 #else
  488 #endif
  489 int     pecoff_sys_getfh(struct lwp *, void *, register_t *);
  490 
  491 int     sys_sysarch(struct lwp *, void *, register_t *);
  492 
  493 #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64)
  494 #else
  495 #endif
  496 #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64)
  497 #else
  498 #endif
  499 #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64)
  500 #else
  501 #endif
  502 int     sys_pread(struct lwp *, void *, register_t *);
  503 
  504 int     sys_pwrite(struct lwp *, void *, register_t *);
  505 
  506 int     sys_ntp_gettime(struct lwp *, void *, register_t *);
  507 
  508 #if defined(NTP) || !defined(_KERNEL)
  509 int     sys_ntp_adjtime(struct lwp *, void *, register_t *);
  510 
  511 #else
  512 #endif
  513 int     sys_setgid(struct lwp *, void *, register_t *);
  514 
  515 int     sys_setegid(struct lwp *, void *, register_t *);
  516 
  517 int     sys_seteuid(struct lwp *, void *, register_t *);
  518 
  519 #if defined(LFS) || !defined(_KERNEL)
  520 int     sys_lfs_bmapv(struct lwp *, void *, register_t *);
  521 
  522 int     sys_lfs_markv(struct lwp *, void *, register_t *);
  523 
  524 int     sys_lfs_segclean(struct lwp *, void *, register_t *);
  525 
  526 int     sys_lfs_segwait(struct lwp *, void *, register_t *);
  527 
  528 #else
  529 #endif
  530 int     pecoff_sys_pathconf(struct lwp *, void *, register_t *);
  531 
  532 int     sys_fpathconf(struct lwp *, void *, register_t *);
  533 
  534 int     sys_getrlimit(struct lwp *, void *, register_t *);
  535 
  536 int     sys_setrlimit(struct lwp *, void *, register_t *);
  537 
  538 int     sys_mmap(struct lwp *, void *, register_t *);
  539 
  540 int     sys_lseek(struct lwp *, void *, register_t *);
  541 
  542 int     pecoff_sys_truncate(struct lwp *, void *, register_t *);
  543 
  544 int     sys_ftruncate(struct lwp *, void *, register_t *);
  545 
  546 int     sys___sysctl(struct lwp *, void *, register_t *);
  547 
  548 int     sys_mlock(struct lwp *, void *, register_t *);
  549 
  550 int     sys_munlock(struct lwp *, void *, register_t *);
  551 
  552 int     pecoff_sys_undelete(struct lwp *, void *, register_t *);
  553 
  554 int     sys_futimes(struct lwp *, void *, register_t *);
  555 
  556 int     sys_getpgid(struct lwp *, void *, register_t *);
  557 
  558 int     sys_reboot(struct lwp *, void *, register_t *);
  559 
  560 int     sys_poll(struct lwp *, void *, register_t *);
  561 
  562 #if defined(LKM) || !defined(_KERNEL)
  563 int     sys_lkmnosys(struct lwp *, void *, register_t *);
  564 
  565 #else   /* !LKM */
  566 #endif  /* !LKM */
  567 #if defined(SYSVSEM) || !defined(_KERNEL)
  568 int     sys_semget(struct lwp *, void *, register_t *);
  569 
  570 int     sys_semop(struct lwp *, void *, register_t *);
  571 
  572 int     sys_semconfig(struct lwp *, void *, register_t *);
  573 
  574 #else
  575 #endif
  576 #if defined(SYSVMSG) || !defined(_KERNEL)
  577 int     sys_msgget(struct lwp *, void *, register_t *);
  578 
  579 int     sys_msgsnd(struct lwp *, void *, register_t *);
  580 
  581 int     sys_msgrcv(struct lwp *, void *, register_t *);
  582 
  583 #else
  584 #endif
  585 #if defined(SYSVSHM) || !defined(_KERNEL)
  586 int     sys_shmat(struct lwp *, void *, register_t *);
  587 
  588 int     sys_shmdt(struct lwp *, void *, register_t *);
  589 
  590 int     sys_shmget(struct lwp *, void *, register_t *);
  591 
  592 #else
  593 #endif
  594 int     sys_clock_gettime(struct lwp *, void *, register_t *);
  595 
  596 int     sys_clock_settime(struct lwp *, void *, register_t *);
  597 
  598 int     sys_clock_getres(struct lwp *, void *, register_t *);
  599 
  600 int     sys_timer_create(struct lwp *, void *, register_t *);
  601 
  602 int     sys_timer_delete(struct lwp *, void *, register_t *);
  603 
  604 int     sys_timer_settime(struct lwp *, void *, register_t *);
  605 
  606 int     sys_timer_gettime(struct lwp *, void *, register_t *);
  607 
  608 int     sys_timer_getoverrun(struct lwp *, void *, register_t *);
  609 
  610 int     sys_nanosleep(struct lwp *, void *, register_t *);
  611 
  612 int     sys_fdatasync(struct lwp *, void *, register_t *);
  613 
  614 int     sys_mlockall(struct lwp *, void *, register_t *);
  615 
  616 int     sys_munlockall(struct lwp *, void *, register_t *);
  617 
  618 int     sys___sigtimedwait(struct lwp *, void *, register_t *);
  619 
  620 #if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
  621 int     sys__ksem_init(struct lwp *, void *, register_t *);
  622 
  623 int     sys__ksem_open(struct lwp *, void *, register_t *);
  624 
  625 int     sys__ksem_unlink(struct lwp *, void *, register_t *);
  626 
  627 int     sys__ksem_close(struct lwp *, void *, register_t *);
  628 
  629 int     sys__ksem_post(struct lwp *, void *, register_t *);
  630 
  631 int     sys__ksem_wait(struct lwp *, void *, register_t *);
  632 
  633 int     sys__ksem_trywait(struct lwp *, void *, register_t *);
  634 
  635 int     sys__ksem_getvalue(struct lwp *, void *, register_t *);
  636 
  637 int     sys__ksem_destroy(struct lwp *, void *, register_t *);
  638 
  639 #else
  640 #endif
  641 int     pecoff_sys___posix_rename(struct lwp *, void *, register_t *);
  642 
  643 int     sys_swapctl(struct lwp *, void *, register_t *);
  644 
  645 int     sys_getdents(struct lwp *, void *, register_t *);
  646 
  647 int     sys_minherit(struct lwp *, void *, register_t *);
  648 
  649 int     pecoff_sys_lchmod(struct lwp *, void *, register_t *);
  650 
  651 int     pecoff_sys_lchown(struct lwp *, void *, register_t *);
  652 
  653 int     pecoff_sys_lutimes(struct lwp *, void *, register_t *);
  654 
  655 int     sys___msync13(struct lwp *, void *, register_t *);
  656 
  657 int     pecoff_sys___stat13(struct lwp *, void *, register_t *);
  658 
  659 int     sys___fstat13(struct lwp *, void *, register_t *);
  660 
  661 int     pecoff_sys___lstat13(struct lwp *, void *, register_t *);
  662 
  663 int     sys___sigaltstack14(struct lwp *, void *, register_t *);
  664 
  665 int     sys___vfork14(struct lwp *, void *, register_t *);
  666 
  667 int     pecoff_sys___posix_chown(struct lwp *, void *, register_t *);
  668 
  669 int     sys___posix_fchown(struct lwp *, void *, register_t *);
  670 
  671 int     pecoff_sys___posix_lchown(struct lwp *, void *, register_t *);
  672 
  673 int     sys_getsid(struct lwp *, void *, register_t *);
  674 
  675 int     sys___clone(struct lwp *, void *, register_t *);
  676 
  677 #if defined(KTRACE) || !defined(_KERNEL)
  678 int     sys_fktrace(struct lwp *, void *, register_t *);
  679 
  680 #else
  681 #endif
  682 int     sys_preadv(struct lwp *, void *, register_t *);
  683 
  684 int     sys_pwritev(struct lwp *, void *, register_t *);
  685 
  686 #ifdef COMPAT_16
  687 int     compat_16_sys___sigaction14(struct lwp *, void *, register_t *);
  688 
  689 #else
  690 #endif
  691 int     sys___sigpending14(struct lwp *, void *, register_t *);
  692 
  693 int     sys___sigprocmask14(struct lwp *, void *, register_t *);
  694 
  695 int     sys___sigsuspend14(struct lwp *, void *, register_t *);
  696 
  697 int     compat_16_sys___sigreturn14(struct lwp *, void *, register_t *);
  698 
  699 int     sys___getcwd(struct lwp *, void *, register_t *);
  700 
  701 int     sys_fchroot(struct lwp *, void *, register_t *);
  702 
  703 int     sys_fhopen(struct lwp *, void *, register_t *);
  704 
  705 int     sys_fhstat(struct lwp *, void *, register_t *);
  706 
  707 #ifdef COMPAT_20
  708 int     compat_20_sys_fhstatfs(struct lwp *, void *, register_t *);
  709 
  710 #else
  711 #endif
  712 #if defined(SYSVSEM) || !defined(_KERNEL)
  713 int     sys_____semctl13(struct lwp *, void *, register_t *);
  714 
  715 #else
  716 #endif
  717 #if defined(SYSVMSG) || !defined(_KERNEL)
  718 int     sys___msgctl13(struct lwp *, void *, register_t *);
  719 
  720 #else
  721 #endif
  722 #if defined(SYSVSHM) || !defined(_KERNEL)
  723 int     sys___shmctl13(struct lwp *, void *, register_t *);
  724 
  725 #else
  726 #endif
  727 int     pecoff_sys_lchflags(struct lwp *, void *, register_t *);
  728 
  729 int     sys_issetugid(struct lwp *, void *, register_t *);
  730 
  731 int     sys_utrace(struct lwp *, void *, register_t *);
  732 
  733 int     sys_getcontext(struct lwp *, void *, register_t *);
  734 
  735 int     sys_setcontext(struct lwp *, void *, register_t *);
  736 
  737 int     sys__lwp_create(struct lwp *, void *, register_t *);
  738 
  739 int     sys__lwp_exit(struct lwp *, void *, register_t *);
  740 
  741 int     sys__lwp_self(struct lwp *, void *, register_t *);
  742 
  743 int     sys__lwp_wait(struct lwp *, void *, register_t *);
  744 
  745 int     sys__lwp_suspend(struct lwp *, void *, register_t *);
  746 
  747 int     sys__lwp_continue(struct lwp *, void *, register_t *);
  748 
  749 int     sys__lwp_wakeup(struct lwp *, void *, register_t *);
  750 
  751 int     sys__lwp_getprivate(struct lwp *, void *, register_t *);
  752 
  753 int     sys__lwp_setprivate(struct lwp *, void *, register_t *);
  754 
  755 int     sys_sa_register(struct lwp *, void *, register_t *);
  756 
  757 int     sys_sa_stacks(struct lwp *, void *, register_t *);
  758 
  759 int     sys_sa_enable(struct lwp *, void *, register_t *);
  760 
  761 int     sys_sa_setconcurrency(struct lwp *, void *, register_t *);
  762 
  763 int     sys_sa_yield(struct lwp *, void *, register_t *);
  764 
  765 int     sys_sa_preempt(struct lwp *, void *, register_t *);
  766 
  767 int     sys___sigaction_sigtramp(struct lwp *, void *, register_t *);
  768 
  769 int     sys_pmc_get_info(struct lwp *, void *, register_t *);
  770 
  771 int     sys_pmc_control(struct lwp *, void *, register_t *);
  772 
  773 int     sys_rasctl(struct lwp *, void *, register_t *);
  774 
  775 int     sys_kqueue(struct lwp *, void *, register_t *);
  776 
  777 int     sys_kevent(struct lwp *, void *, register_t *);
  778 
  779 int     sys_fsync_range(struct lwp *, void *, register_t *);
  780 
  781 int     sys_uuidgen(struct lwp *, void *, register_t *);
  782 
  783 int     sys_getvfsstat(struct lwp *, void *, register_t *);
  784 
  785 int     sys_statvfs1(struct lwp *, void *, register_t *);
  786 
  787 int     sys_fstatvfs1(struct lwp *, void *, register_t *);
  788 
  789 int     sys_fhstatvfs1(struct lwp *, void *, register_t *);
  790 
  791 #endif /* _PECOFF_SYS__SYSCALLARGS_H_ */

Cache object: a3309b465d4ccd08bb6fa1aa6e1cea7d


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