Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 | /* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* Copyright (c) 1995-1999 Apple Computer, Inc. All Rights Reserved */ /* * HISTORY * 12-Feb-00 Clark Warner (warner_c) at Apple * Added copyfile system call * 26-Jul-99 Earsh Nandkeshwar (earsh) at Apple * Changed getdirentryattr to getdirentriesattr * 22-Jan-98 Clark Warner (warner_c) at Apple * Created new system calls for supporting HFS/HFS Plus file system semantics * * 04-Jun-95 Mac Gillon (mgillon) at NeXT * Created new version based on NS3.3 and 4.4BSD * */ #include <sys/param.h> #include <sys/systm.h> #include <sys/signal.h> #include <sys/mount.h> /* serial or parallel system call */ #define syss(fn,no) {no, 0, KERNEL_FUNNEL, fn} #define sysp(fn,no) {no, 1, KERNEL_FUNNEL, fn} #define sysnets(fn,no) {no, 0, NETWORK_FUNNEL, fn} #define sysnetp(fn,no) {no, 1, NETWORK_FUNNEL, fn} /* * definitions */ int nosys(); int exit(); int fork(); int read(); int write(); int open(); int close(); int wait4(); int link(); int unlink(); int chdir(); int fchdir(); int mknod(); int chmod(); int chown(); int obreak(); int getfsstat(); #if COMPAT_GETFSSTAT int ogetfsstat(); #endif int getpid(); int mount(); int unmount(); int setuid(); int getuid(); int geteuid(); int ptrace(); int recvmsg(); int sendmsg(); int recvfrom(); int accept(); int getpeername(); int getsockname(); int access(); int chflags(); int fchflags(); int sync(); int kill(); int getppid(); int dup(); int pipe(); int getegid(); int profil(); int load_shared_file(); int reset_shared_file(); #if KTRACE int ktrace(); #else #endif int sigaction(); int getgid(); int sigprocmask(); int getlogin(); int setlogin(); int acct(); int sigpending(); int sigaltstack(); int ioctl(); int reboot(); int revoke(); int symlink(); int readlink(); int execve(); int umask(); int chroot(); int msync(); int vfork(); int sbrk(); int sstk(); int ovadvise(); int munmap(); int mprotect(); int madvise(); int mincore(); int getgroups(); int setgroups(); int getpgrp(); int setpgid(); int setitimer(); int swapon(); int getitimer(); int getdtablesize(); int dup2(); int fcntl(); int select(); int fsync(); int setpriority(); int socket(); int connect(); int getpriority(); int sigreturn(); int bind(); int setsockopt(); int listen(); int sigsuspend(); #if TRACE int vtrace(); #else #endif int gettimeofday(); int getrusage(); int getsockopt(); int readv(); int writev(); int settimeofday(); int fchown(); int fchmod(); int rename(); int flock(); int mkfifo(); int sendto(); int shutdown(); int socketpair(); int mkdir(); int rmdir(); int utimes(); int adjtime(); int setsid(); int quotactl(); int nfssvc(); int statfs(); int fstatfs(); int getfh(); int setgid(); int setegid(); int seteuid(); #if LFS int lfs_bmapv(); int lfs_markv(); int lfs_segclean(); int lfs_segwait(); #else #endif int stat(); int fstat(); int lstat(); int pathconf(); int fpathconf(); int getrlimit(); int setrlimit(); int getdirentries(); int mmap(); int nosys(); int lseek(); int truncate(); int ftruncate(); int __sysctl(); int undelete(); int setprivexec(); int add_profil(); #ifdef NOTEVER int table(); #endif /* NOTEVER */ int kdebug_trace(); int mlock(); int munlock(); int minherit(); int mlockall(); int munlockall(); #if COMPAT_43 #define compat(name,n) syss(__CONCAT(o,name),n) #define compatp(name,n) sysp(__CONCAT(o,name),n) #define comaptnet(name,n) sysnets(__CONCAT(o,name),n) #define comaptnetp(name,n) sysnetp(__CONCAT(o,name),n) int ocreat(); int olseek(); int ostat(); int olstat(); #if KTRACE #else #endif int ofstat(); int ogetkerninfo(); int osmmap(); int ogetpagesize(); int ommap(); int owait(); int ogethostname(); int osethostname(); int oaccept(); int osend(); int orecv(); int osigvec(); int osigblock(); int osigsetmask(); int osigstack(); int orecvmsg(); int osendmsg(); #if TRACE #else #endif int orecvfrom(); int osetreuid(); int osetregid(); int otruncate(); int oftruncate(); int ogetpeername(); int ogethostid(); int osethostid(); int ogetrlimit(); int osetrlimit(); int okillpg(); int oquota(); int ogetsockname(); int ogetdomainname(); int osetdomainname(); int owait3(); #if NFS #else #endif int ogetdirentries(); #if NFS #else #endif #if LFS #else #endif #if NETAT int ATsocket(); int ATgetmsg(); int ATputmsg(); int ATPsndreq(); int ATPsndrsp(); int ATPgetreq(); int ATPgetrsp(); #endif /* NETAT */ /* Calls for supporting HFS Semantics */ int mkcomplex(); int statv(); int lstatv(); int fstatv(); int getattrlist(); int setattrlist(); int getdirentriesattr(); int exchangedata(); int checkuseraccess(); int searchfs(); int delete(); int copyfile(); /* end of HFS calls */ #else /* COMPAT_43 */ #define compat(n, name) syss(nosys,0) #define compatp(n, name) sysp(nosys,0) #define comaptnet(n, name) sysnets(nosys,0) #define comaptnetp(n, name) sysnetp(nosys,0) #endif /* COMPAT_43 */ int watchevent(); int waitevent(); int modwatch(); int fsctl(); int semsys(); int msgsys(); int shmsys(); int semctl(); int semget(); int semop(); int semconfig(); int msgctl(); int msgget(); int msgsnd(); int msgrcv(); int shmat(); int shmctl(); int shmdt(); int shmget(); int shm_open(); int shm_unlink(); int sem_open(); int sem_close(); int sem_unlink(); int sem_wait(); int sem_trywait(); int sem_post(); int sem_getvalue(); int sem_init(); int sem_destroy(); int issetugid(); /* * System call switch table. */ struct sysent sysent[] = { syss(nosys,0), /* 0 = indir */ syss(exit,1), /* 1 = exit */ syss(fork,0), /* 2 = fork */ sysp(read,3), /* 3 = read */ sysp(write,3), /* 4 = write */ syss(open,3), /* 5 = open */ syss(close,1), /* 6 = close */ syss(wait4, 4), /* 7 = wait4 */ compat(creat,2), /* 8 = old creat */ syss(link,2), /* 9 = link */ syss(unlink,1), /* 10 = unlink */ syss(nosys, 0), /* 11 was obsolete execv */ syss(chdir,1), /* 12 = chdir */ syss(fchdir,1), /* 13 = fchdir */ syss(mknod,3), /* 14 = mknod */ syss(chmod,2), /* 15 = chmod */ syss(chown,3), /* 16 = chown; now 3 args */ syss(obreak,1), /* 17 = old break */ #if COMPAT_GETFSSTAT syss(ogetfsstat, 3), /* 18 = ogetfsstat */ #else syss(getfsstat, 3), /* 18 = getfsstat */ #endif compat(lseek,3), /* 19 = old lseek */ sysp(getpid,0), /* 20 = getpid */ syss(nosys, 0), /* 21 was obsolete mount */ syss(nosys, 0), /* 22 was obsolete umount */ syss(setuid,1), /* 23 = setuid */ sysp(getuid,0), /* 24 = getuid */ sysp(geteuid,0), /* 25 = geteuid */ syss(ptrace,4), /* 26 = ptrace */ sysnets(recvmsg,3), /* 27 = recvmsg */ sysnets(sendmsg,3), /* 28 = sendmsg */ sysnets(recvfrom,6), /* 29 = recvfrom */ sysnets(accept,3), /* 30 = accept */ sysnets(getpeername,3), /* 31 = getpeername */ sysnets(getsockname,3), /* 32 = getsockname */ syss(access,2), /* 33 = access */ syss(chflags,2), /* 34 = chflags */ syss(fchflags,2), /* 35 = fchflags */ syss(sync,0), /* 36 = sync */ syss(kill,2), /* 37 = kill */ compat(stat,2), /* 38 = old stat */ sysp(getppid,0), /* 39 = getppid */ compat(lstat,2), /* 40 = old lstat */ syss(dup,2), /* 41 = dup */ syss(pipe,0), /* 42 = pipe */ sysp(getegid,0), /* 43 = getegid */ syss(profil,4), /* 44 = profil */ #if KTRACE syss(ktrace,4), /* 45 = ktrace */ #else syss(nosys,0), /* 45 = nosys */ #endif syss(sigaction,3), /* 46 = sigaction */ sysp(getgid,0), /* 47 = getgid */ syss(sigprocmask,2), /* 48 = sigprocmask */ syss(getlogin,2), /* 49 = getlogin */ syss(setlogin,1), /* 50 = setlogin */ syss(acct,1), /* 51 = turn acct off/on */ syss(sigpending,0), /* 52 = sigpending */ syss(sigaltstack,2), /* 53 = sigaltstack */ syss(ioctl,3), /* 54 = ioctl */ syss(reboot,2), /* 55 = reboot */ syss(revoke,1), /* 56 = revoke */ syss(symlink,2), /* 57 = symlink */ syss(readlink,3), /* 58 = readlink */ syss(execve,3), /* 59 = execve */ syss(umask,1), /* 60 = umask */ syss(chroot,1), /* 61 = chroot */ compat(fstat,2), /* 62 = old fstat */ syss(nosys,0), /* 63 = used internally, reserved */ compat(getpagesize,0), /* 64 = old getpagesize */ syss(msync,3), /* 65 = msync */ syss(vfork,0), /* 66 = vfork */ syss(nosys,0), /* 67 was obsolete vread */ syss(nosys,0), /* 68 was obsolete vwrite */ syss(sbrk,1), /* 69 = sbrk */ syss(sstk,1), /* 70 = sstk */ compat(smmap,6), /* 71 = old mmap */ syss(ovadvise,1), /* 72 = old vadvise */ syss(munmap,2), /* 73 = munmap */ syss(mprotect,3), /* 74 = mprotect */ syss(madvise,3), /* 75 = madvise */ syss(nosys,0), /* 76 was obsolete vhangup */ syss(nosys,0), /* 77 was obsolete vlimit */ syss(mincore,3), /* 78 = mincore */ sysp(getgroups,2), /* 79 = getgroups */ sysp(setgroups,2), /* 80 = setgroups */ sysp(getpgrp,0), /* 81 = getpgrp */ sysp(setpgid,2), /* 82 = setpgid */ syss(setitimer,3), /* 83 = setitimer */ compat(wait,0), /* 84 = old wait */ syss(swapon,1), /* 85 = swapon */ syss(getitimer,2), /* 86 = getitimer */ compat(gethostname,2), /* 87 = old gethostname */ compat(sethostname,2), /* 88 = old sethostname */ sysp(getdtablesize, 0), /* 89 getdtablesize */ syss(dup2,2), /* 90 = dup2 */ syss(nosys,0), /* 91 was obsolete getdopt */ syss(fcntl,3), /* 92 = fcntl */ syss(select,5), /* 93 = select */ syss(nosys,0), /* 94 was obsolete setdopt */ syss(fsync,1), /* 95 = fsync */ sysp(setpriority,3), /* 96 = setpriority */ sysnets(socket,3), /* 97 = socket */ sysnets(connect,3), /* 98 = connect */ comaptnet(accept,3), /* 99 = accept */ sysp(getpriority,2), /* 100 = getpriority */ comaptnet(send,4), /* 101 = old send */ comaptnet(recv,4), /* 102 = old recv */ syss(sigreturn,1), /* 103 = sigreturn */ sysnets(bind,3), /* 104 = bind */ sysnets(setsockopt,5), /* 105 = setsockopt */ sysnets(listen,2), /* 106 = listen */ syss(nosys,0), /* 107 was vtimes */ compat(sigvec,3), /* 108 = sigvec */ compat(sigblock,1), /* 109 = sigblock */ compat(sigsetmask,1), /* 110 = sigsetmask */ syss(sigsuspend,1), /* 111 = sigpause */ compat(sigstack,2), /* 112 = sigstack */ comaptnet(recvmsg,3), /* 113 = recvmsg */ comaptnet(sendmsg,3), /* 114 = sendmsg */ syss(nosys,0), /* 115 = old vtrace */ syss(gettimeofday,2), /* 116 = gettimeofday */ sysp(getrusage,2), /* 117 = getrusage */ sysnets(getsockopt,5), /* 118 = getsockopt */ syss(nosys,0), /* 119 = old resuba */ sysp(readv,3), /* 120 = readv */ sysp(writev,3), /* 121 = writev */ syss(settimeofday,2), /* 122 = settimeofday */ syss(fchown,3), /* 123 = fchown */ syss(fchmod,2), /* 124 = fchmod */ comaptnet(recvfrom,6), /* 125 = recvfrom */ compat(setreuid,2), /* 126 = setreuid */ compat(setregid,2), /* 127 = setregid */ syss(rename,2), /* 128 = rename */ compat(truncate,2), /* 129 = old truncate */ compat(ftruncate,2), /* 130 = ftruncate */ syss(flock,2), /* 131 = flock */ syss(mkfifo,2), /* 132 = nosys */ sysnets(sendto,6), /* 133 = sendto */ sysnets(shutdown,2), /* 134 = shutdown */ sysnets(socketpair,5), /* 135 = socketpair */ syss(mkdir,2), /* 136 = mkdir */ syss(rmdir,1), /* 137 = rmdir */ syss(utimes,2), /* 138 = utimes */ syss(nosys,0), /* 139 = used internally */ syss(adjtime,2), /* 140 = adjtime */ comaptnet(getpeername,3),/* 141 = getpeername */ compat(gethostid,0), /* 142 = old gethostid */ sysp(nosys,0), /* 143 = old sethostid */ compat(getrlimit,2), /* 144 = old getrlimit */ compat(setrlimit,2), /* 145 = old setrlimit */ compat(killpg,2), /* 146 = old killpg */ syss(setsid,0), /* 147 = setsid */ syss(nosys,0), /* 148 was setquota */ syss(nosys,0), /* 149 was qquota */ comaptnet(getsockname,3),/* 150 = getsockname */ /* * Syscalls 151-183 inclusive are reserved for vendor-specific * system calls. (This includes various calls added for compatibity * with other Unix variants.) */ syss(nosys,0), /* 151 was m68k specific machparam */ sysp(setprivexec,1),/* 152 = setprivexec */ syss(nosys,0), /* 153 */ syss(nosys,0), /* 154 */ syss(nfssvc,2), /* 155 = nfs_svc */ compat(getdirentries,4), /* 156 = old getdirentries */ syss(statfs, 2), /* 157 = statfs */ syss(fstatfs, 2), /* 158 = fstatfs */ syss(unmount, 2), /* 159 = unmount */ syss(nosys,0), /* 160 was async_daemon */ syss(getfh,2), /* 161 = get file handle */ /*?????*/ compat(getdomainname,2), /* 162 = getdomainname */ compat(setdomainname,2), /* 163 = setdomainname */ syss(nosys,0), /* 164 */ #if QUOTA syss(quotactl, 4), /* 165 = quotactl */ #else QUOTA syss(nosys, 0), /* 165 = not configured */ #endif /* QUOTA */ syss(nosys,0), /* 166 was exportfs */ syss(mount, 4), /* 167 = mount */ syss(nosys,0), /* 168 was ustat */ syss(nosys,0), /* 169 = nosys */ syss(nosys,0), /* 170 was table */ compat(wait3,3), /* 171 = old wait3 */ syss(nosys,0), /* 172 was rpause */ syss(nosys,0), /* 173 = nosys */ syss(nosys,0), /* 174 was getdents */ syss(nosys,0), /* 175 was gc_control */ syss(add_profil,4), /* 176 = add_profil */ syss(nosys,0), /* 177 */ syss(nosys,0), /* 178 */ syss(nosys,0), /* 179 */ syss(kdebug_trace,0), /* 180 */ syss(setgid,1), /* 181 */ syss(setegid,1), /* 182 */ syss(seteuid,1), /* 183 */ #if LFS syss(lfs_bmapv,3), /* 184 = lfs_bmapv */ syss(lfs_markv,3), /* 185 = lfs_markv */ syss(lfs_segclean,2), /* 186 = lfs_segclean */ syss(lfs_segwait,2), /* 187 = lfs_segwait */ #else syss(nosys,0), /* 184 = nosys */ syss(nosys,0), /* 185 = nosys */ syss(nosys,0), /* 186 = nosys */ syss(nosys,0), /* 187 = nosys */ #endif syss(stat,2), /* 188 = stat */ syss(fstat,2), /* 189 = fstat */ syss(lstat,2), /* 190 = lstat */ syss(pathconf,2), /* 191 = pathconf */ syss(fpathconf,2), /* 192 = fpathconf */ #if COMPAT_GETFSSTAT syss(getfsstat,0), /* 193 = getfsstat */ #else syss(nosys,0), /* 193 is unused */ #endif syss(getrlimit,2), /* 194 = getrlimit */ syss(setrlimit,2), /* 195 = setrlimit */ syss(getdirentries,4), /* 196 = getdirentries */ #ifdef DOUBLE_ALIGN_PARAMS syss(mmap,8), /* 197 = mmap */ #else syss(mmap,7), /* 197 = mmap */ #endif syss(nosys,0), /* 198 = __syscall */ syss(lseek,5), /* 199 = lseek */ syss(truncate,4), /* 200 = truncate */ syss(ftruncate,4), /* 201 = ftruncate */ syss(__sysctl,6), /* 202 = __sysctl */ sysp(mlock, 2), /* 203 = mlock */ syss(munlock, 2), /* 204 = munlock */ #if NETAT syss(undelete,1), /* 205 = undelete */ sysnets(ATsocket,1), /* 206 = AppleTalk ATsocket */ sysnets(ATgetmsg,4), /* 207 = AppleTalk ATgetmsg*/ sysnets(ATputmsg,4), /* 208 = AppleTalk ATputmsg*/ sysnets(ATPsndreq,4), /* 209 = AppleTalk ATPsndreq*/ sysnets(ATPsndrsp,4), /* 210 = AppleTalk ATPsndrsp*/ sysnets(ATPgetreq,3), /* 211 = AppleTalk ATPgetreq*/ sysnets(ATPgetrsp,2), /* 212 = AppleTalk ATPgetrsp*/ syss(nosys,0), /* 213 = Reserved for AT expansion */ syss(nosys,0), /* 214 = Reserved for AT expansion */ syss(nosys,0), /* 215 = Reserved for AT expansion */ #else syss(undelete,1), /* 205 = undelete */ /* System calls 205 - 215 are reserved to allow HFS and AT to coexist */ /* CHW 1/22/98 */ syss(nosys,0), /* 206 = Reserved for AppleTalk */ syss(nosys,0), /* 207 = Reserved for AppleTalk */ syss(nosys,0), /* 208 = Reserved for AppleTalk */ syss(nosys,0), /* 209 = Reserved for AppleTalk */ syss(nosys,0), /* 210 = Reserved for AppleTalk */ syss(nosys,0), /* 211 = Reserved for AppleTalk */ syss(nosys,0), /* 212 = Reserved for AppleTalk */ syss(nosys,0), /* 213 = Reserved for AppleTalk */ syss(nosys,0), /* 214 = Reserved for AppleTalk */ syss(nosys,0), /* 215 = Reserved for AppleTalk */ #endif /* NETAT */ /* * System Calls 216 - 230 are reserved for calls to support HFS/HFS Plus * file system semantics. Currently, we only use 215-227. The rest is * for future expansion in anticipation of new MacOS APIs for HFS Plus. * These calls are not conditionalized becuase while they are specific * to HFS semantics, they are not specific to the HFS filesystem. * We expect all filesystems to recognize the call and report that it is * not supported or to actually implement it. */ syss(nosys,3), /* 216 = HFS make complex file call (multipel forks */ syss(nosys,2), /* 217 = HFS statv extended stat call for HFS */ syss(nosys,2), /* 218 = HFS lstatv extended lstat call for HFS */ syss(nosys,2), /* 219 = HFS fstatv extended fstat call for HFS */ syss(getattrlist,5), /* 220 = HFS getarrtlist get attribute list cal */ syss(setattrlist,5), /* 221 = HFS setattrlist set attribute list */ syss(getdirentriesattr,8), /* 222 = HFS getdirentriesattr get directory attributes */ syss(exchangedata,3), /* 223 = HFS exchangedata exchange file contents */ syss(checkuseraccess,6),/* 224 = HFS checkuseraccess check access to a file */ syss(searchfs,6), /* 225 = HFS searchfs to implement catalog searching */ syss(delete,1), /* 226 = private HFS delete (with Mac OS semantics) */ syss(copyfile,4), /* 227 = Copyfile for orignally for AFP */ syss(nosys,0), /* 228 */ syss(nosys,0), /* 229 */ syss(nosys,0), /* 230 */ sysnets(watchevent,2), /* 231 */ sysnets(waitevent,2), /* 232 */ sysnets(modwatch,2), /* 233 */ syss(nosys,0), /* 234 */ syss(nosys,0), /* 235 */ syss(nosys,0), /* 236 */ syss(nosys,0), /* 237 */ syss(nosys,0), /* 238 */ syss(nosys,0), /* 239 */ syss(nosys,0), /* 240 */ syss(nosys,0), /* 241 */ syss(fsctl,0), /* 242 */ syss(nosys,0), /* 243 */ syss(nosys,0), /* 244 */ syss(nosys,0), /* 245 */ syss(nosys,0), /* 246 */ syss(nosys,0), /* 247 */ syss(nosys,0), /* 248 */ syss(nosys,0), /* 249 */ syss(minherit,3), /* 250 */ syss(semsys,5), /* 251 = semsys */ syss(msgsys,6), /* 252 = msgsys */ syss(shmsys,4), /* 253 = shmsys */ syss(semctl,4), /* 254 = semctl */ syss(semget,3), /* 255 = semget */ syss(semop,3), /* 256 = semop */ syss(semconfig,1), /* 257 = semconfig */ syss(msgctl,3), /* 258 = msgctl */ syss(msgget,2), /* 259 = msgget */ syss(msgsnd,4), /* 260 = msgsnd */ syss(msgrcv,5), /* 261 = msgrcv */ syss(shmat,3), /* 262 = shmat */ syss(shmctl,3), /* 263 = shmctl */ syss(shmdt,1), /* 264 = shmdt */ syss(shmget,3), /* 265 = shmget */ syss(shm_open,3), /* 266 = shm_open */ syss(shm_unlink,1), /* 267 = shm_unlink */ syss(sem_open,4), /* 268 = sem_open */ syss(sem_close,1), /* 269 = sem_close */ syss(sem_unlink,1), /* 270 = sem_unlink */ syss(sem_wait,1), /* 271 = sem_wait */ syss(sem_trywait,1), /* 272 = sem_trywait */ syss(sem_post,1), /* 273 = sem_post */ syss(sem_getvalue,2), /* 274 = sem_getvalue */ syss(sem_init,3), /* 275 = sem_init */ syss(sem_destroy,1), /* 276 = sem_destroy */ syss(nosys,0), /* 277 */ syss(nosys,0), /* 278 */ syss(nosys,0), /* 279 */ syss(nosys,0), /* 280 */ syss(nosys,0), /* 281 */ syss(nosys,0), /* 282 */ syss(nosys,0), /* 283 */ syss(nosys,0), /* 284 */ syss(nosys,0), /* 285 */ syss(nosys,0), /* 286 */ syss(nosys,0), /* 287 */ syss(nosys,0), /* 288 */ syss(nosys,0), /* 289 */ syss(nosys,0), /* 290 */ syss(nosys,0), /* 291 */ syss(nosys,0), /* 292 */ syss(nosys,0), /* 293 */ syss(nosys,0), /* 294 */ syss(nosys,0), /* 295 */ syss(load_shared_file,7), /* 296 */ syss(reset_shared_file,3), /* 297 */ syss(nosys,0), /* 298 */ syss(nosys,0), /* 299 */ syss(nosys,0), /* 300 */ syss(nosys,0), /* 301 */ syss(nosys,0), /* 302 */ syss(nosys,0), /* 303 */ syss(nosys,0), /* 304 */ syss(nosys,0), /* 305 */ syss(nosys,0), /* 306 */ syss(nosys,0), /* 307 */ syss(nosys,0), /* 308 */ syss(nosys,0), /* 309 */ syss(nosys,0), /* 310 */ syss(nosys,0), /* 311 */ syss(nosys,0), /* 312 */ syss(nosys,0), /* 313 */ syss(nosys,0), /* 314 */ syss(nosys,0), /* 315 */ syss(nosys,0), /* 316 */ syss(nosys,0), /* 317 */ syss(nosys,0), /* 318 */ syss(nosys,0), /* 319 */ syss(nosys,0), /* 320 */ syss(nosys,0), /* 321 */ syss(nosys,0), /* 322 */ syss(nosys,0), /* 323 */ syss(mlockall,1), /* 324 */ syss(munlockall,1), /* 325 */ syss(nosys,0), /* 326 */ sysp(issetugid,0), /* 327 = issetugid */ syss(nosys,0), /* 328 */ syss(nosys,0), /* 329 */ syss(nosys,0), /* 330 */ syss(nosys,0), /* 331 */ syss(nosys,0), /* 332 */ syss(nosys,0), /* 333 */ syss(nosys,0), /* 334 */ syss(nosys,0), /* 335 */ syss(nosys,0), /* 336 */ syss(nosys,0), /* 337 */ syss(nosys,0), /* 338 */ syss(nosys,0), /* 339 */ syss(nosys,0), /* 340 */ syss(nosys,0), /* 341 */ syss(nosys,0), /* 342 */ syss(nosys,0), /* 343 */ syss(nosys,0), /* 344 */ syss(nosys,0), /* 345 */ syss(nosys,0), /* 346 */ syss(nosys,0), /* 347 */ syss(nosys,0), /* 348 */ syss(nosys,0) /* 349 */ }; int nsysent = sizeof(sysent) / sizeof(sysent[0]); |