1999-08-28 01:08:13 +00:00
|
|
|
$FreeBSD$
|
1994-08-02 07:55:43 +00:00
|
|
|
; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94
|
|
|
|
;
|
1994-05-24 10:09:53 +00:00
|
|
|
; System call name/number master file.
|
|
|
|
; Processed to created init_sysent.c, syscalls.c and syscall.h.
|
|
|
|
|
2001-08-30 18:50:57 +00:00
|
|
|
; Columns: number [M]type nargs namespc name alt{name,tag,rtyp}/comments
|
1994-05-24 10:09:53 +00:00
|
|
|
; number system call number, must be in order
|
2001-08-30 18:50:57 +00:00
|
|
|
; type one of [M]STD, [M]OBSOL, [M]UNIMPL, [M]COMPAT, [M]CPT_NOA,
|
|
|
|
; [M]LIBCOMPAT, [M]NODEF, [M]NOARGS, [M]NOPROTO, [M]NOIMPL,
|
|
|
|
; [M]NOSTD
|
1994-09-13 00:48:26 +00:00
|
|
|
; namespc one of POSIX, BSD, NOHIDE
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
; name psuedo-prototype of syscall routine
|
1995-09-19 13:31:04 +00:00
|
|
|
; If one of the following alts is different, then all appear:
|
1994-05-24 10:09:53 +00:00
|
|
|
; altname name of system call if different
|
1995-09-19 13:31:04 +00:00
|
|
|
; alttag name of args struct tag if different from [o]`name'"_args"
|
|
|
|
; altrtyp return type if not int (bogus - syscalls always return int)
|
1994-05-24 10:09:53 +00:00
|
|
|
; for UNIMPL/OBSOL, name continues with comments
|
|
|
|
|
|
|
|
; types:
|
2001-08-30 18:50:57 +00:00
|
|
|
; [M] e.g. like MSTD -- means the system call is MP-safe. If no
|
|
|
|
; M prefix is used, the syscall wrapper will obtain the Giant
|
|
|
|
; lock for the syscall.
|
1994-05-24 10:09:53 +00:00
|
|
|
; STD always included
|
|
|
|
; COMPAT included on COMPAT #ifdef
|
|
|
|
; LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
|
|
|
|
; OBSOL obsolete, not included in system, only specifies name
|
|
|
|
; UNIMPL not implemented, placeholder only
|
2000-12-01 08:57:47 +00:00
|
|
|
; NOSTD implemented but as a lkm that can be statically
|
|
|
|
; compiled in sysent entry will be filled with lkmsys
|
|
|
|
; so the SYSCALL_MODULE macro works
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
; #ifdef's, etc. may be included, and are copied to the output files.
|
|
|
|
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sysent.h>
|
|
|
|
#include <sys/sysproto.h>
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
; Reserved/unimplemented system calls in the range 0-150 inclusive
|
|
|
|
; are reserved for use in future Berkeley releases.
|
|
|
|
; Additional system calls implemented in vendor and other
|
|
|
|
; redistributions should be placed in the reserved range at the end
|
|
|
|
; of the current calls.
|
|
|
|
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
0 STD NOHIDE { int nosys(void); } syscall nosys_args int
|
2000-07-29 10:05:25 +00:00
|
|
|
1 STD NOHIDE { void sys_exit(int rval); } exit sys_exit_args void
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
2 STD POSIX { int fork(void); }
|
1998-08-24 08:29:52 +00:00
|
|
|
3 STD POSIX { ssize_t read(int fd, void *buf, size_t nbyte); }
|
|
|
|
4 STD POSIX { ssize_t write(int fd, const void *buf, size_t nbyte); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
5 STD POSIX { int open(char *path, int flags, int mode); }
|
Fixed the args list for mount(). We're not ready for the BSD4.4lite2/
NetBSD interface.
Increased the bogusness of the args list for mmap(). The args lists for
most of the memory mapping functions are bogus. The args lists in
syscalls.master are a little better than the ones in the args structs
currently being used, but the improvement for mmap() changed the object
code and I don't want to worry about that now.
Increased the bogusness of the args list for fcntl. BSD4.4lite2/NetBSD
uses `void *' instead of int for the third arg. This has the advantage
of working when `void *'s are longer than ints, but requires extra bogus
casts that I hope to avoid.
Fixed the args list for uname. `struct outsname' seems to be a typo,
not an old interface.
Added comments about bogus args lists for open, mount, msync, munmap,
mprotect, madvise, mincore, fcntl, semsys, msgsys and shmsys.
1995-11-12 04:24:53 +00:00
|
|
|
; XXX should be { int open(const char *path, int flags, ...); }
|
|
|
|
; but we're not ready for `const' or varargs.
|
|
|
|
; XXX man page says `mode_t mode'.
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
6 STD POSIX { int close(int fd); }
|
|
|
|
7 STD BSD { int wait4(int pid, int *status, int options, \
|
|
|
|
struct rusage *rusage); } wait4 wait_args int
|
|
|
|
8 COMPAT BSD { int creat(char *path, int mode); }
|
|
|
|
9 STD POSIX { int link(char *path, char *link); }
|
|
|
|
10 STD POSIX { int unlink(char *path); }
|
|
|
|
11 OBSOL NOHIDE execv
|
|
|
|
12 STD POSIX { int chdir(char *path); }
|
|
|
|
13 STD BSD { int fchdir(int fd); }
|
|
|
|
14 STD POSIX { int mknod(char *path, int mode, int dev); }
|
|
|
|
15 STD POSIX { int chmod(char *path, int mode); }
|
|
|
|
16 STD POSIX { int chown(char *path, int uid, int gid); }
|
2001-08-30 18:50:57 +00:00
|
|
|
17 MSTD BSD { int obreak(char *nsize); } break obreak_args int
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
18 STD BSD { int getfsstat(struct statfs *buf, long bufsize, \
|
|
|
|
int flags); }
|
|
|
|
19 COMPAT POSIX { long lseek(int fd, long offset, int whence); }
|
|
|
|
20 STD POSIX { pid_t getpid(void); }
|
1997-02-10 02:22:35 +00:00
|
|
|
21 STD BSD { int mount(char *type, char *path, int flags, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
caddr_t data); }
|
Fixed the args list for mount(). We're not ready for the BSD4.4lite2/
NetBSD interface.
Increased the bogusness of the args list for mmap(). The args lists for
most of the memory mapping functions are bogus. The args lists in
syscalls.master are a little better than the ones in the args structs
currently being used, but the improvement for mmap() changed the object
code and I don't want to worry about that now.
Increased the bogusness of the args list for fcntl. BSD4.4lite2/NetBSD
uses `void *' instead of int for the third arg. This has the advantage
of working when `void *'s are longer than ints, but requires extra bogus
casts that I hope to avoid.
Fixed the args list for uname. `struct outsname' seems to be a typo,
not an old interface.
Added comments about bogus args lists for open, mount, msync, munmap,
mprotect, madvise, mincore, fcntl, semsys, msgsys and shmsys.
1995-11-12 04:24:53 +00:00
|
|
|
; XXX `path' should have type `const char *' but we're not ready for that.
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
22 STD BSD { int unmount(char *path, int flags); }
|
|
|
|
23 STD POSIX { int setuid(uid_t uid); }
|
2001-08-30 18:50:57 +00:00
|
|
|
24 MSTD POSIX { uid_t getuid(void); }
|
|
|
|
25 MSTD POSIX { uid_t geteuid(void); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
26 STD BSD { int ptrace(int req, pid_t pid, caddr_t addr, \
|
|
|
|
int data); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
27 MSTD BSD { int recvmsg(int s, struct msghdr *msg, int flags); }
|
|
|
|
28 MSTD BSD { int sendmsg(int s, caddr_t msg, int flags); }
|
|
|
|
29 MSTD BSD { int recvfrom(int s, caddr_t buf, size_t len, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int flags, caddr_t from, int *fromlenaddr); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
30 MSTD BSD { int accept(int s, caddr_t name, int *anamelen); }
|
|
|
|
31 MSTD BSD { int getpeername(int fdes, caddr_t asa, int *alen); }
|
|
|
|
32 MSTD BSD { int getsockname(int fdes, caddr_t asa, int *alen); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
33 STD POSIX { int access(char *path, int flags); }
|
|
|
|
34 STD BSD { int chflags(char *path, int flags); }
|
|
|
|
35 STD BSD { int fchflags(int fd, int flags); }
|
|
|
|
36 STD BSD { int sync(void); }
|
|
|
|
37 STD POSIX { int kill(int pid, int signum); }
|
|
|
|
38 COMPAT POSIX { int stat(char *path, struct ostat *ub); }
|
|
|
|
39 STD POSIX { pid_t getppid(void); }
|
|
|
|
40 COMPAT POSIX { int lstat(char *path, struct ostat *ub); }
|
|
|
|
41 STD POSIX { int dup(u_int fd); }
|
|
|
|
42 STD POSIX { int pipe(void); }
|
|
|
|
43 STD POSIX { gid_t getegid(void); }
|
1998-08-24 08:29:52 +00:00
|
|
|
44 STD BSD { int profil(caddr_t samples, size_t size, \
|
|
|
|
size_t offset, u_int scale); }
|
1999-05-13 09:09:37 +00:00
|
|
|
45 STD BSD { int ktrace(const char *fname, int ops, int facs, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int pid); }
|
1999-10-12 09:29:53 +00:00
|
|
|
46 COMPAT POSIX { int sigaction(int signum, struct osigaction *nsa, \
|
1999-09-29 15:01:21 +00:00
|
|
|
struct osigaction *osa); }
|
2001-08-30 18:50:57 +00:00
|
|
|
47 MSTD POSIX { gid_t getgid(void); }
|
|
|
|
48 MCOMPAT POSIX { int sigprocmask(int how, osigset_t mask); }
|
1997-01-16 15:58:32 +00:00
|
|
|
; XXX note nonstandard (bogus) calling convention - the libc stub passes
|
|
|
|
; us the mask, not a pointer to it, and we return the old mask as the
|
|
|
|
; (int) return value.
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
49 STD BSD { int getlogin(char *namebuf, u_int namelen); }
|
|
|
|
50 STD BSD { int setlogin(char *namebuf); }
|
|
|
|
51 STD BSD { int acct(char *path); }
|
1999-10-12 09:29:53 +00:00
|
|
|
52 COMPAT POSIX { int sigpending(void); }
|
1999-09-29 15:01:21 +00:00
|
|
|
53 STD BSD { int sigaltstack(stack_t *ss, stack_t *oss); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
54 STD POSIX { int ioctl(int fd, u_long com, caddr_t data); }
|
|
|
|
55 STD BSD { int reboot(int opt); }
|
|
|
|
56 STD POSIX { int revoke(char *path); }
|
|
|
|
57 STD POSIX { int symlink(char *path, char *link); }
|
|
|
|
58 STD POSIX { int readlink(char *path, char *buf, int count); }
|
|
|
|
59 STD POSIX { int execve(char *fname, char **argv, char **envv); }
|
2001-08-30 18:50:57 +00:00
|
|
|
60 MSTD POSIX { int umask(int newmask); } umask umask_args int
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
61 STD BSD { int chroot(char *path); }
|
|
|
|
62 COMPAT POSIX { int fstat(int fd, struct ostat *sb); }
|
1998-08-24 08:29:52 +00:00
|
|
|
63 COMPAT BSD { int getkerninfo(int op, char *where, size_t *size, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int arg); } getkerninfo getkerninfo_args int
|
2001-08-30 18:50:57 +00:00
|
|
|
64 MCOMPAT BSD { int getpagesize(void); } \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
getpagesize getpagesize_args int
|
1998-01-01 17:07:46 +00:00
|
|
|
65 STD BSD { int msync(void *addr, size_t len, int flags); }
|
1996-02-23 18:20:44 +00:00
|
|
|
66 STD BSD { int vfork(void); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
67 OBSOL NOHIDE vread
|
|
|
|
68 OBSOL NOHIDE vwrite
|
2001-08-30 18:50:57 +00:00
|
|
|
69 MSTD BSD { int sbrk(int incr); }
|
|
|
|
70 MSTD BSD { int sstk(int incr); }
|
|
|
|
71 MCOMPAT BSD { int mmap(void *addr, int len, int prot, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int flags, int fd, long pos); }
|
2001-08-30 18:50:57 +00:00
|
|
|
72 MSTD BSD { int ovadvise(int anom); } vadvise ovadvise_args int
|
|
|
|
73 MSTD BSD { int munmap(void *addr, size_t len); }
|
|
|
|
74 MSTD BSD { int mprotect(const void *addr, size_t len, int prot); }
|
|
|
|
75 MSTD BSD { int madvise(void *addr, size_t len, int behav); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
76 OBSOL NOHIDE vhangup
|
|
|
|
77 OBSOL NOHIDE vlimit
|
2001-08-30 18:50:57 +00:00
|
|
|
78 MSTD BSD { int mincore(const void *addr, size_t len, \
|
1998-02-03 17:45:43 +00:00
|
|
|
char *vec); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
79 STD POSIX { int getgroups(u_int gidsetsize, gid_t *gidset); }
|
|
|
|
80 STD POSIX { int setgroups(u_int gidsetsize, gid_t *gidset); }
|
2001-08-30 18:50:57 +00:00
|
|
|
81 MSTD POSIX { int getpgrp(void); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
82 STD POSIX { int setpgid(int pid, int pgid); }
|
|
|
|
83 STD BSD { int setitimer(u_int which, struct itimerval *itv, \
|
|
|
|
struct itimerval *oitv); }
|
1995-10-07 23:56:20 +00:00
|
|
|
84 COMPAT BSD { int wait(void); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
85 STD BSD { int swapon(char *name); }
|
|
|
|
86 STD BSD { int getitimer(u_int which, struct itimerval *itv); }
|
|
|
|
87 COMPAT BSD { int gethostname(char *hostname, u_int len); } \
|
|
|
|
gethostname gethostname_args int
|
|
|
|
88 COMPAT BSD { int sethostname(char *hostname, u_int len); } \
|
|
|
|
sethostname sethostname_args int
|
|
|
|
89 STD BSD { int getdtablesize(void); }
|
|
|
|
90 STD POSIX { int dup2(u_int from, u_int to); }
|
|
|
|
91 UNIMPL BSD getdopt
|
1998-06-07 17:13:14 +00:00
|
|
|
92 STD POSIX { int fcntl(int fd, int cmd, long arg); }
|
Fixed the args list for mount(). We're not ready for the BSD4.4lite2/
NetBSD interface.
Increased the bogusness of the args list for mmap(). The args lists for
most of the memory mapping functions are bogus. The args lists in
syscalls.master are a little better than the ones in the args structs
currently being used, but the improvement for mmap() changed the object
code and I don't want to worry about that now.
Increased the bogusness of the args list for fcntl. BSD4.4lite2/NetBSD
uses `void *' instead of int for the third arg. This has the advantage
of working when `void *'s are longer than ints, but requires extra bogus
casts that I hope to avoid.
Fixed the args list for uname. `struct outsname' seems to be a typo,
not an old interface.
Added comments about bogus args lists for open, mount, msync, munmap,
mprotect, madvise, mincore, fcntl, semsys, msgsys and shmsys.
1995-11-12 04:24:53 +00:00
|
|
|
; XXX should be { int fcntl(int fd, int cmd, ...); }
|
|
|
|
; but we're not ready for varargs.
|
|
|
|
; XXX man page says `int arg' too.
|
1996-08-20 07:18:10 +00:00
|
|
|
93 STD BSD { int select(int nd, fd_set *in, fd_set *ou, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
fd_set *ex, struct timeval *tv); }
|
|
|
|
94 UNIMPL BSD setdopt
|
|
|
|
95 STD POSIX { int fsync(int fd); }
|
|
|
|
96 STD BSD { int setpriority(int which, int who, int prio); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
97 MSTD BSD { int socket(int domain, int type, int protocol); }
|
|
|
|
98 MSTD BSD { int connect(int s, caddr_t name, int namelen); }
|
|
|
|
99 MCPT_NOA BSD { int accept(int s, caddr_t name, int *anamelen); } \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
accept accept_args int
|
|
|
|
100 STD BSD { int getpriority(int which, int who); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
101 MCOMPAT BSD { int send(int s, caddr_t buf, int len, int flags); }
|
|
|
|
102 MCOMPAT BSD { int recv(int s, caddr_t buf, int len, int flags); }
|
1999-10-12 09:29:53 +00:00
|
|
|
103 COMPAT BSD { int sigreturn(struct osigcontext *sigcntxp); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
104 MSTD BSD { int bind(int s, caddr_t name, int namelen); }
|
|
|
|
105 MSTD BSD { int setsockopt(int s, int level, int name, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
caddr_t val, int valsize); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
106 MSTD BSD { int listen(int s, int backlog); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
107 OBSOL NOHIDE vtimes
|
|
|
|
108 COMPAT BSD { int sigvec(int signum, struct sigvec *nsv, \
|
|
|
|
struct sigvec *osv); }
|
|
|
|
109 COMPAT BSD { int sigblock(int mask); }
|
|
|
|
110 COMPAT BSD { int sigsetmask(int mask); }
|
1999-10-12 09:29:53 +00:00
|
|
|
111 COMPAT POSIX { int sigsuspend(osigset_t mask); }
|
1997-01-16 15:58:32 +00:00
|
|
|
; XXX note nonstandard (bogus) calling convention - the libc stub passes
|
|
|
|
; us the mask, not a pointer to it.
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
112 COMPAT BSD { int sigstack(struct sigstack *nss, \
|
|
|
|
struct sigstack *oss); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
113 MCOMPAT BSD { int recvmsg(int s, struct omsghdr *msg, int flags); }
|
|
|
|
114 MCOMPAT BSD { int sendmsg(int s, caddr_t msg, int flags); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
115 OBSOL NOHIDE vtrace
|
2001-08-30 18:50:57 +00:00
|
|
|
116 MSTD BSD { int gettimeofday(struct timeval *tp, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
struct timezone *tzp); }
|
|
|
|
117 STD BSD { int getrusage(int who, struct rusage *rusage); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
118 MSTD BSD { int getsockopt(int s, int level, int name, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
caddr_t val, int *avalsize); }
|
1996-02-23 18:03:08 +00:00
|
|
|
119 UNIMPL NOHIDE resuba (BSD/OS 2.x)
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
120 STD BSD { int readv(int fd, struct iovec *iovp, u_int iovcnt); }
|
|
|
|
121 STD BSD { int writev(int fd, struct iovec *iovp, \
|
|
|
|
u_int iovcnt); }
|
|
|
|
122 STD BSD { int settimeofday(struct timeval *tv, \
|
|
|
|
struct timezone *tzp); }
|
|
|
|
123 STD BSD { int fchown(int fd, int uid, int gid); }
|
|
|
|
124 STD BSD { int fchmod(int fd, int mode); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
125 MCPT_NOA BSD { int recvfrom(int s, caddr_t buf, size_t len, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int flags, caddr_t from, int *fromlenaddr); } \
|
|
|
|
recvfrom recvfrom_args int
|
|
|
|
126 STD BSD { int setreuid(int ruid, int euid); }
|
|
|
|
127 STD BSD { int setregid(int rgid, int egid); }
|
|
|
|
128 STD POSIX { int rename(char *from, char *to); }
|
|
|
|
129 COMPAT BSD { int truncate(char *path, long length); }
|
|
|
|
130 COMPAT BSD { int ftruncate(int fd, long length); }
|
|
|
|
131 STD BSD { int flock(int fd, int how); }
|
|
|
|
132 STD POSIX { int mkfifo(char *path, int mode); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
133 MSTD BSD { int sendto(int s, caddr_t buf, size_t len, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int flags, caddr_t to, int tolen); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
134 MSTD BSD { int shutdown(int s, int how); }
|
|
|
|
135 MSTD BSD { int socketpair(int domain, int type, int protocol, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int *rsv); }
|
|
|
|
136 STD POSIX { int mkdir(char *path, int mode); }
|
|
|
|
137 STD POSIX { int rmdir(char *path); }
|
|
|
|
138 STD BSD { int utimes(char *path, struct timeval *tptr); }
|
|
|
|
139 OBSOL NOHIDE 4.2 sigreturn
|
|
|
|
140 STD BSD { int adjtime(struct timeval *delta, \
|
|
|
|
struct timeval *olddelta); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
141 MCOMPAT BSD { int getpeername(int fdes, caddr_t asa, int *alen); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
142 COMPAT BSD { long gethostid(void); }
|
|
|
|
143 COMPAT BSD { int sethostid(long hostid); }
|
2000-08-28 07:50:44 +00:00
|
|
|
144 COMPAT BSD { int getrlimit(u_int which, struct orlimit *rlp); }
|
|
|
|
145 COMPAT BSD { int setrlimit(u_int which, struct orlimit *rlp); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
146 COMPAT BSD { int killpg(int pgid, int signum); }
|
|
|
|
147 STD POSIX { int setsid(void); }
|
|
|
|
148 STD BSD { int quotactl(char *path, int cmd, int uid, \
|
|
|
|
caddr_t arg); }
|
|
|
|
149 COMPAT BSD { int quota(void); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
150 MCPT_NOA BSD { int getsockname(int fdec, caddr_t asa, int *alen); }\
|
1995-10-07 23:56:20 +00:00
|
|
|
getsockname getsockname_args int
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
; Syscalls 151-180 inclusive are reserved for vendor-specific
|
|
|
|
; system calls. (This includes various calls added for compatibity
|
|
|
|
; with other Unix variants.)
|
|
|
|
; Some of these calls are now supported by BSD...
|
1996-02-23 18:03:08 +00:00
|
|
|
151 UNIMPL NOHIDE sem_lock (BSD/OS 2.x)
|
|
|
|
152 UNIMPL NOHIDE sem_wakeup (BSD/OS 2.x)
|
|
|
|
153 UNIMPL NOHIDE asyncdaemon (BSD/OS 2.x)
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
154 UNIMPL NOHIDE nosys
|
1997-10-26 20:27:51 +00:00
|
|
|
; 155 is initialized by the NFS code, if present.
|
|
|
|
155 NOIMPL BSD { int nfssvc(int flag, caddr_t argp); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
156 COMPAT BSD { int getdirentries(int fd, char *buf, u_int count, \
|
|
|
|
long *basep); }
|
|
|
|
157 STD BSD { int statfs(char *path, struct statfs *buf); }
|
|
|
|
158 STD BSD { int fstatfs(int fd, struct statfs *buf); }
|
|
|
|
159 UNIMPL NOHIDE nosys
|
|
|
|
160 UNIMPL NOHIDE nosys
|
1999-12-21 20:21:12 +00:00
|
|
|
161 STD BSD { int getfh(char *fname, struct fhandle *fhp); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
162 STD BSD { int getdomainname(char *domainname, int len); }
|
|
|
|
163 STD BSD { int setdomainname(char *domainname, int len); }
|
Fixed the args list for mount(). We're not ready for the BSD4.4lite2/
NetBSD interface.
Increased the bogusness of the args list for mmap(). The args lists for
most of the memory mapping functions are bogus. The args lists in
syscalls.master are a little better than the ones in the args structs
currently being used, but the improvement for mmap() changed the object
code and I don't want to worry about that now.
Increased the bogusness of the args list for fcntl. BSD4.4lite2/NetBSD
uses `void *' instead of int for the third arg. This has the advantage
of working when `void *'s are longer than ints, but requires extra bogus
casts that I hope to avoid.
Fixed the args list for uname. `struct outsname' seems to be a typo,
not an old interface.
Added comments about bogus args lists for open, mount, msync, munmap,
mprotect, madvise, mincore, fcntl, semsys, msgsys and shmsys.
1995-11-12 04:24:53 +00:00
|
|
|
164 STD BSD { int uname(struct utsname *name); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
165 STD BSD { int sysarch(int op, char *parms); }
|
|
|
|
166 STD BSD { int rtprio(int function, pid_t pid, \
|
|
|
|
struct rtprio *rtp); }
|
|
|
|
167 UNIMPL NOHIDE nosys
|
|
|
|
168 UNIMPL NOHIDE nosys
|
2000-12-01 08:57:47 +00:00
|
|
|
; 169 is initialized by the SYSVSEM code if present or loaded
|
2001-08-31 00:02:18 +00:00
|
|
|
169 MNOSTD BSD { int semsys(int which, int a2, int a3, int a4, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int a5); }
|
2000-12-01 08:57:47 +00:00
|
|
|
; 169 is initialized by the SYSVMSG code if present or loaded
|
Fixed the args list for mount(). We're not ready for the BSD4.4lite2/
NetBSD interface.
Increased the bogusness of the args list for mmap(). The args lists for
most of the memory mapping functions are bogus. The args lists in
syscalls.master are a little better than the ones in the args structs
currently being used, but the improvement for mmap() changed the object
code and I don't want to worry about that now.
Increased the bogusness of the args list for fcntl. BSD4.4lite2/NetBSD
uses `void *' instead of int for the third arg. This has the advantage
of working when `void *'s are longer than ints, but requires extra bogus
casts that I hope to avoid.
Fixed the args list for uname. `struct outsname' seems to be a typo,
not an old interface.
Added comments about bogus args lists for open, mount, msync, munmap,
mprotect, madvise, mincore, fcntl, semsys, msgsys and shmsys.
1995-11-12 04:24:53 +00:00
|
|
|
; XXX should be { int semsys(int which, ...); }
|
2001-08-31 00:02:18 +00:00
|
|
|
170 MNOSTD BSD { int msgsys(int which, int a2, int a3, int a4, \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
int a5, int a6); }
|
2000-12-01 08:57:47 +00:00
|
|
|
; 169 is initialized by the SYSVSHM code if present or loaded
|
Fixed the args list for mount(). We're not ready for the BSD4.4lite2/
NetBSD interface.
Increased the bogusness of the args list for mmap(). The args lists for
most of the memory mapping functions are bogus. The args lists in
syscalls.master are a little better than the ones in the args structs
currently being used, but the improvement for mmap() changed the object
code and I don't want to worry about that now.
Increased the bogusness of the args list for fcntl. BSD4.4lite2/NetBSD
uses `void *' instead of int for the third arg. This has the advantage
of working when `void *'s are longer than ints, but requires extra bogus
casts that I hope to avoid.
Fixed the args list for uname. `struct outsname' seems to be a typo,
not an old interface.
Added comments about bogus args lists for open, mount, msync, munmap,
mprotect, madvise, mincore, fcntl, semsys, msgsys and shmsys.
1995-11-12 04:24:53 +00:00
|
|
|
; XXX should be { int msgsys(int which, ...); }
|
2001-08-31 00:02:18 +00:00
|
|
|
171 MNOSTD BSD { int shmsys(int which, int a2, int a3, int a4); }
|
Fixed the args list for mount(). We're not ready for the BSD4.4lite2/
NetBSD interface.
Increased the bogusness of the args list for mmap(). The args lists for
most of the memory mapping functions are bogus. The args lists in
syscalls.master are a little better than the ones in the args structs
currently being used, but the improvement for mmap() changed the object
code and I don't want to worry about that now.
Increased the bogusness of the args list for fcntl. BSD4.4lite2/NetBSD
uses `void *' instead of int for the third arg. This has the advantage
of working when `void *'s are longer than ints, but requires extra bogus
casts that I hope to avoid.
Fixed the args list for uname. `struct outsname' seems to be a typo,
not an old interface.
Added comments about bogus args lists for open, mount, msync, munmap,
mprotect, madvise, mincore, fcntl, semsys, msgsys and shmsys.
1995-11-12 04:24:53 +00:00
|
|
|
; XXX should be { int shmsys(int which, ...); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
172 UNIMPL NOHIDE nosys
|
1999-04-04 21:41:28 +00:00
|
|
|
173 STD POSIX { ssize_t pread(int fd, void *buf, size_t nbyte, \
|
|
|
|
int pad, off_t offset); }
|
|
|
|
174 STD POSIX { ssize_t pwrite(int fd, const void *buf, \
|
|
|
|
size_t nbyte, int pad, off_t offset); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
175 UNIMPL NOHIDE nosys
|
|
|
|
176 STD BSD { int ntp_adjtime(struct timex *tp); }
|
1996-02-23 18:03:08 +00:00
|
|
|
177 UNIMPL NOHIDE sfork (BSD/OS 2.x)
|
|
|
|
178 UNIMPL NOHIDE getdescriptor (BSD/OS 2.x)
|
|
|
|
179 UNIMPL NOHIDE setdescriptor (BSD/OS 2.x)
|
1999-08-04 20:04:25 +00:00
|
|
|
180 UNIMPL NOHIDE nosys
|
1999-08-05 08:18:45 +00:00
|
|
|
|
|
|
|
; Syscalls 181-199 are used by/reserved for BSD
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
181 STD POSIX { int setgid(gid_t gid); }
|
|
|
|
182 STD BSD { int setegid(gid_t egid); }
|
|
|
|
183 STD BSD { int seteuid(uid_t euid); }
|
1998-01-30 11:34:06 +00:00
|
|
|
184 UNIMPL BSD lfs_bmapv
|
|
|
|
185 UNIMPL BSD lfs_markv
|
|
|
|
186 UNIMPL BSD lfs_segclean
|
|
|
|
187 UNIMPL BSD lfs_segwait
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
188 STD POSIX { int stat(char *path, struct stat *ub); }
|
|
|
|
189 STD POSIX { int fstat(int fd, struct stat *sb); }
|
|
|
|
190 STD POSIX { int lstat(char *path, struct stat *ub); }
|
|
|
|
191 STD POSIX { int pathconf(char *path, int name); }
|
|
|
|
192 STD POSIX { int fpathconf(int fd, int name); }
|
|
|
|
193 UNIMPL NOHIDE nosys
|
|
|
|
194 STD BSD { int getrlimit(u_int which, \
|
2000-08-28 07:50:44 +00:00
|
|
|
struct rlimit *rlp); } \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
getrlimit __getrlimit_args int
|
|
|
|
195 STD BSD { int setrlimit(u_int which, \
|
2000-08-28 07:50:44 +00:00
|
|
|
struct rlimit *rlp); } \
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
setrlimit __setrlimit_args int
|
|
|
|
196 STD BSD { int getdirentries(int fd, char *buf, u_int count, \
|
|
|
|
long *basep); }
|
2001-08-30 18:50:57 +00:00
|
|
|
197 MSTD BSD { caddr_t mmap(caddr_t addr, size_t len, int prot, \
|
2000-05-09 08:31:06 +00:00
|
|
|
int flags, int fd, int pad, off_t pos); }
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
198 STD NOHIDE { int nosys(void); } __syscall __syscall_args int
|
|
|
|
199 STD POSIX { off_t lseek(int fd, int pad, off_t offset, \
|
|
|
|
int whence); }
|
|
|
|
200 STD BSD { int truncate(char *path, int pad, off_t length); }
|
|
|
|
201 STD BSD { int ftruncate(int fd, int pad, off_t length); }
|
|
|
|
202 STD BSD { int __sysctl(int *name, u_int namelen, void *old, \
|
|
|
|
size_t *oldlenp, void *new, size_t newlen); } \
|
|
|
|
__sysctl sysctl_args int
|
1994-09-13 00:48:26 +00:00
|
|
|
; properly, __sysctl should be a NOHIDE, but making an exception
|
|
|
|
; here allows to avoid one in libc/sys/Makefile.inc.
|
2001-08-30 18:50:57 +00:00
|
|
|
203 MSTD BSD { int mlock(const void *addr, size_t len); }
|
|
|
|
204 MSTD BSD { int munlock(const void *addr, size_t len); }
|
1998-05-11 03:55:28 +00:00
|
|
|
205 STD BSD { int undelete(char *path); }
|
|
|
|
206 STD BSD { int futimes(int fd, struct timeval *tptr); }
|
1997-08-19 05:53:48 +00:00
|
|
|
207 STD BSD { int getpgid(pid_t pid); }
|
1997-05-08 14:07:11 +00:00
|
|
|
208 UNIMPL NOHIDE newreboot (NetBSD)
|
1997-09-14 02:22:05 +00:00
|
|
|
209 STD BSD { int poll(struct pollfd *fds, u_int nfds, \
|
|
|
|
int timeout); }
|
1994-08-19 11:45:29 +00:00
|
|
|
|
|
|
|
;
|
|
|
|
; The following are reserved for loadable syscalls
|
|
|
|
;
|
Add new functionality to makesyscalls.sh:
o optional config-file to set vars: sysnames, sysproto, sysproto_h,
syshdr, syssw, syshide, syscallprefix, switchname, namesname, sysvec.
o change syntax of syscalls.master entry:
remove argument count.
add pseudo-prototype field defining function name and arguments.
o generates correct structure definitions for all system calls
in sys/sysproto.h
o add type NOARGS: same as STD except do not create structure in
sys/sysproto.h
o add type NOPROTO: same as STD except do not create structure or function
prototype in sys/sysproto.h
New functionality provides complete prototype definitions.
Usefull for generating files for emulated systems like my new ibcs2 code.
Update syscalls.master to reflect new changes. For example, read()
entry now looks like:
3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); }
This is similar to how NetBSD generates these files.
1995-10-07 06:24:08 +00:00
|
|
|
210 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
211 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
212 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
213 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
214 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
215 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
216 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
217 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
218 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
|
|
|
219 NODEF NOHIDE lkmnosys lkmnosys nosys_args int
|
1995-12-15 04:36:01 +00:00
|
|
|
|
|
|
|
;
|
1996-02-23 18:03:08 +00:00
|
|
|
; The following were introduced with NetBSD/4.4Lite-2
|
2000-12-01 08:57:47 +00:00
|
|
|
; They are initialized by thier respective modules/sysinits
|
2001-08-31 00:02:18 +00:00
|
|
|
220 MNOSTD BSD { int __semctl(int semid, int semnum, int cmd, \
|
1995-12-15 04:36:01 +00:00
|
|
|
union semun *arg); }
|
2001-08-31 00:02:18 +00:00
|
|
|
221 MNOSTD BSD { int semget(key_t key, int nsems, int semflg); }
|
|
|
|
222 MNOSTD BSD { int semop(int semid, struct sembuf *sops, \
|
1995-12-15 04:36:01 +00:00
|
|
|
u_int nsops); }
|
2000-05-01 11:11:44 +00:00
|
|
|
223 UNIMPL NOHIDE semconfig
|
2001-08-31 00:02:18 +00:00
|
|
|
224 MNOSTD BSD { int msgctl(int msqid, int cmd, \
|
1995-12-15 04:36:01 +00:00
|
|
|
struct msqid_ds *buf); }
|
2001-08-31 00:02:18 +00:00
|
|
|
225 MNOSTD BSD { int msgget(key_t key, int msgflg); }
|
|
|
|
226 MNOSTD BSD { int msgsnd(int msqid, void *msgp, size_t msgsz, \
|
1995-12-15 04:36:01 +00:00
|
|
|
int msgflg); }
|
2001-08-31 00:02:18 +00:00
|
|
|
227 MNOSTD BSD { int msgrcv(int msqid, void *msgp, size_t msgsz, \
|
1995-12-15 04:36:01 +00:00
|
|
|
long msgtyp, int msgflg); }
|
2001-08-31 00:02:18 +00:00
|
|
|
228 MNOSTD BSD { int shmat(int shmid, void *shmaddr, int shmflg); }
|
|
|
|
229 MNOSTD BSD { int shmctl(int shmid, int cmd, \
|
1995-12-15 04:36:01 +00:00
|
|
|
struct shmid_ds *buf); }
|
2001-08-31 00:02:18 +00:00
|
|
|
230 MNOSTD BSD { int shmdt(void *shmaddr); }
|
|
|
|
231 MNOSTD BSD { int shmget(key_t key, int size, int shmflg); }
|
1996-02-23 18:20:44 +00:00
|
|
|
;
|
1997-05-08 14:04:37 +00:00
|
|
|
232 STD POSIX { int clock_gettime(clockid_t clock_id, \
|
|
|
|
struct timespec *tp); }
|
|
|
|
233 STD POSIX { int clock_settime(clockid_t clock_id, \
|
|
|
|
const struct timespec *tp); }
|
|
|
|
234 STD POSIX { int clock_getres(clockid_t clock_id, \
|
|
|
|
struct timespec *tp); }
|
|
|
|
235 UNIMPL NOHIDE timer_create
|
|
|
|
236 UNIMPL NOHIDE timer_delete
|
|
|
|
237 UNIMPL NOHIDE timer_settime
|
|
|
|
238 UNIMPL NOHIDE timer_gettime
|
|
|
|
239 UNIMPL NOHIDE timer_getoverrun
|
|
|
|
240 STD POSIX { int nanosleep(const struct timespec *rqtp, \
|
|
|
|
struct timespec *rmtp); }
|
1996-02-23 18:20:44 +00:00
|
|
|
241 UNIMPL NOHIDE nosys
|
|
|
|
242 UNIMPL NOHIDE nosys
|
|
|
|
243 UNIMPL NOHIDE nosys
|
|
|
|
244 UNIMPL NOHIDE nosys
|
|
|
|
245 UNIMPL NOHIDE nosys
|
|
|
|
246 UNIMPL NOHIDE nosys
|
|
|
|
247 UNIMPL NOHIDE nosys
|
|
|
|
248 UNIMPL NOHIDE nosys
|
|
|
|
249 UNIMPL NOHIDE nosys
|
|
|
|
; syscall numbers initially used in OpenBSD
|
2001-08-30 18:50:57 +00:00
|
|
|
250 MSTD BSD { int minherit(void *addr, size_t len, int inherit); }
|
1996-02-23 18:20:44 +00:00
|
|
|
251 STD BSD { int rfork(int flags); }
|
1997-09-14 02:22:05 +00:00
|
|
|
252 STD BSD { int openbsd_poll(struct pollfd *fds, u_int nfds, \
|
|
|
|
int timeout); }
|
1997-03-31 14:52:50 +00:00
|
|
|
253 STD BSD { int issetugid(void); }
|
1997-03-31 12:14:48 +00:00
|
|
|
254 STD BSD { int lchown(char *path, int uid, int gid); }
|
1997-05-07 16:05:47 +00:00
|
|
|
255 UNIMPL NOHIDE nosys
|
|
|
|
256 UNIMPL NOHIDE nosys
|
|
|
|
257 UNIMPL NOHIDE nosys
|
|
|
|
258 UNIMPL NOHIDE nosys
|
|
|
|
259 UNIMPL NOHIDE nosys
|
|
|
|
260 UNIMPL NOHIDE nosys
|
|
|
|
261 UNIMPL NOHIDE nosys
|
|
|
|
262 UNIMPL NOHIDE nosys
|
|
|
|
263 UNIMPL NOHIDE nosys
|
|
|
|
264 UNIMPL NOHIDE nosys
|
|
|
|
265 UNIMPL NOHIDE nosys
|
|
|
|
266 UNIMPL NOHIDE nosys
|
|
|
|
267 UNIMPL NOHIDE nosys
|
|
|
|
268 UNIMPL NOHIDE nosys
|
|
|
|
269 UNIMPL NOHIDE nosys
|
|
|
|
270 UNIMPL NOHIDE nosys
|
|
|
|
271 UNIMPL NOHIDE nosys
|
1998-05-11 03:55:28 +00:00
|
|
|
272 STD BSD { int getdents(int fd, char *buf, size_t count); }
|
1997-05-07 16:05:47 +00:00
|
|
|
273 UNIMPL NOHIDE nosys
|
1998-05-11 03:55:28 +00:00
|
|
|
274 STD BSD { int lchmod(char *path, mode_t mode); }
|
2000-05-09 08:31:06 +00:00
|
|
|
275 NOPROTO BSD { int lchown(char *path, uid_t uid, gid_t gid); } netbsd_lchown lchown_args int
|
1998-05-11 03:55:28 +00:00
|
|
|
276 STD BSD { int lutimes(char *path, struct timeval *tptr); }
|
2001-08-30 18:50:57 +00:00
|
|
|
277 MNOPROTO BSD { int msync(void *addr, size_t len, int flags); } netbsd_msync msync_args int
|
1998-05-11 03:55:28 +00:00
|
|
|
278 STD BSD { int nstat(char *path, struct nstat *ub); }
|
|
|
|
279 STD BSD { int nfstat(int fd, struct nstat *sb); }
|
|
|
|
280 STD BSD { int nlstat(char *path, struct nstat *ub); }
|
1997-05-07 16:05:47 +00:00
|
|
|
281 UNIMPL NOHIDE nosys
|
|
|
|
282 UNIMPL NOHIDE nosys
|
|
|
|
283 UNIMPL NOHIDE nosys
|
|
|
|
284 UNIMPL NOHIDE nosys
|
|
|
|
285 UNIMPL NOHIDE nosys
|
|
|
|
286 UNIMPL NOHIDE nosys
|
|
|
|
287 UNIMPL NOHIDE nosys
|
|
|
|
288 UNIMPL NOHIDE nosys
|
|
|
|
289 UNIMPL NOHIDE nosys
|
|
|
|
290 UNIMPL NOHIDE nosys
|
|
|
|
291 UNIMPL NOHIDE nosys
|
|
|
|
292 UNIMPL NOHIDE nosys
|
|
|
|
293 UNIMPL NOHIDE nosys
|
|
|
|
294 UNIMPL NOHIDE nosys
|
|
|
|
295 UNIMPL NOHIDE nosys
|
|
|
|
296 UNIMPL NOHIDE nosys
|
1999-09-11 00:46:08 +00:00
|
|
|
; XXX 297 is 300 in NetBSD
|
|
|
|
297 STD BSD { int fhstatfs(const struct fhandle *u_fhp, struct statfs *buf); }
|
|
|
|
298 STD BSD { int fhopen(const struct fhandle *u_fhp, int flags); }
|
|
|
|
299 STD BSD { int fhstat(const struct fhandle *u_fhp, struct stat *sb); }
|
1997-05-07 16:05:47 +00:00
|
|
|
; syscall numbers for FreeBSD
|
|
|
|
300 STD BSD { int modnext(int modid); }
|
|
|
|
301 STD BSD { int modstat(int modid, struct module_stat* stat); }
|
|
|
|
302 STD BSD { int modfnext(int modid); }
|
1999-11-17 21:32:40 +00:00
|
|
|
303 STD BSD { int modfind(const char *name); }
|
1997-05-07 16:05:47 +00:00
|
|
|
304 STD BSD { int kldload(const char *file); }
|
|
|
|
305 STD BSD { int kldunload(int fileid); }
|
|
|
|
306 STD BSD { int kldfind(const char *file); }
|
|
|
|
307 STD BSD { int kldnext(int fileid); }
|
|
|
|
308 STD BSD { int kldstat(int fileid, struct kld_file_stat* stat); }
|
|
|
|
309 STD BSD { int kldfirstmod(int fileid); }
|
1997-08-19 05:53:48 +00:00
|
|
|
310 STD BSD { int getsid(pid_t pid); }
|
2000-01-16 16:34:26 +00:00
|
|
|
311 STD BSD { int setresuid(uid_t ruid, uid_t euid, uid_t suid); }
|
|
|
|
312 STD BSD { int setresgid(gid_t rgid, gid_t egid, gid_t sgid); }
|
1998-05-14 11:28:11 +00:00
|
|
|
313 OBSOL NOHIDE signanosleep
|
1997-06-16 00:29:36 +00:00
|
|
|
314 STD BSD { int aio_return(struct aiocb *aiocbp); }
|
|
|
|
315 STD BSD { int aio_suspend(struct aiocb * const * aiocbp, int nent, const struct timespec *timeout); }
|
|
|
|
316 STD BSD { int aio_cancel(int fd, struct aiocb *aiocbp); }
|
|
|
|
317 STD BSD { int aio_error(struct aiocb *aiocbp); }
|
|
|
|
318 STD BSD { int aio_read(struct aiocb *aiocbp); }
|
|
|
|
319 STD BSD { int aio_write(struct aiocb *aiocbp); }
|
|
|
|
320 STD BSD { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }
|
|
|
|
321 STD BSD { int yield(void); }
|
2000-12-02 05:41:30 +00:00
|
|
|
322 OBSOL NOHIDE thr_sleep
|
|
|
|
323 OBSOL NOHIDE thr_wakeup
|
2001-08-30 18:50:57 +00:00
|
|
|
324 MSTD BSD { int mlockall(int how); }
|
|
|
|
325 MSTD BSD { int munlockall(void); }
|
1997-09-14 16:51:31 +00:00
|
|
|
326 STD BSD { int __getcwd(u_char *buf, u_int buflen); }
|
1998-03-28 11:51:01 +00:00
|
|
|
|
|
|
|
327 STD POSIX { int sched_setparam (pid_t pid, const struct sched_param *param); }
|
|
|
|
328 STD POSIX { int sched_getparam (pid_t pid, struct sched_param *param); }
|
|
|
|
|
|
|
|
329 STD POSIX { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }
|
|
|
|
330 STD POSIX { int sched_getscheduler (pid_t pid); }
|
|
|
|
|
|
|
|
331 STD POSIX { int sched_yield (void); }
|
|
|
|
332 STD POSIX { int sched_get_priority_max (int policy); }
|
|
|
|
333 STD POSIX { int sched_get_priority_min (int policy); }
|
|
|
|
334 STD POSIX { int sched_rr_get_interval (pid_t pid, struct timespec *interval); }
|
1999-05-13 09:09:37 +00:00
|
|
|
335 STD BSD { int utrace(const void *addr, size_t len); }
|
Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls:
recvmsg(), sendmsg(), recvfrom(), accept(), getpeername(), getsockname(),
socket(), connect(), accept(), send(), recv(), bind(), setsockopt(), listen(),
sendto(), shutdown(), socketpair(), sendfile()
2001-08-31 00:37:34 +00:00
|
|
|
336 MSTD BSD { int sendfile(int fd, int s, off_t offset, size_t nbytes, \
|
1998-11-05 14:28:26 +00:00
|
|
|
struct sf_hdtr *hdtr, off_t *sbytes, int flags); }
|
1998-11-11 12:45:14 +00:00
|
|
|
337 STD BSD { int kldsym(int fileid, int cmd, void *data); }
|
1999-04-28 11:28:49 +00:00
|
|
|
338 STD BSD { int jail(struct jail *jail); }
|
1999-08-04 20:04:25 +00:00
|
|
|
339 UNIMPL BSD pioctl
|
2001-08-30 18:50:57 +00:00
|
|
|
340 MSTD POSIX { int sigprocmask(int how, const sigset_t *set, \
|
1999-09-29 15:01:21 +00:00
|
|
|
sigset_t *oset); }
|
|
|
|
341 STD POSIX { int sigsuspend(const sigset_t *sigmask); }
|
|
|
|
342 STD POSIX { int sigaction(int sig, const struct sigaction *act, \
|
|
|
|
struct sigaction *oact); }
|
|
|
|
343 STD POSIX { int sigpending(sigset_t *set); }
|
|
|
|
344 STD BSD { int sigreturn(ucontext_t *sigcntxp); }
|
|
|
|
345 UNIMPL NOHIDE sigtimedwait
|
|
|
|
346 UNIMPL NOHIDE sigwaitinfo
|
2000-01-19 06:01:07 +00:00
|
|
|
347 STD BSD { int __acl_get_file(const char *path, \
|
|
|
|
acl_type_t type, struct acl *aclp); }
|
|
|
|
348 STD BSD { int __acl_set_file(const char *path, \
|
|
|
|
acl_type_t type, struct acl *aclp); }
|
|
|
|
349 STD BSD { int __acl_get_fd(int filedes, acl_type_t type, \
|
|
|
|
struct acl *aclp); }
|
|
|
|
350 STD BSD { int __acl_set_fd(int filedes, acl_type_t type, \
|
|
|
|
struct acl *aclp); }
|
|
|
|
351 STD BSD { int __acl_delete_file(const char *path, \
|
|
|
|
acl_type_t type); }
|
|
|
|
352 STD BSD { int __acl_delete_fd(int filedes, acl_type_t type); }
|
|
|
|
353 STD BSD { int __acl_aclcheck_file(const char *path, \
|
|
|
|
acl_type_t type, struct acl *aclp); }
|
|
|
|
354 STD BSD { int __acl_aclcheck_fd(int filedes, acl_type_t type, \
|
|
|
|
struct acl *aclp); }
|
|
|
|
355 STD BSD { int extattrctl(const char *path, int cmd, \
|
2001-03-19 05:44:15 +00:00
|
|
|
const char *filename, int attrnamespace, \
|
o Change the API and ABI of the Extended Attribute kernel interfaces to
introduce a new argument, "namespace", rather than relying on a first-
character namespace indicator. This is in line with more recent
thinking on EA interfaces on various mailing lists, including the
posix1e, Linux acl-devel, and trustedbsd-discuss forums. Two namespaces
are defined by default, EXTATTR_NAMESPACE_SYSTEM and
EXTATTR_NAMESPACE_USER, where the primary distinction lies in the
access control model: user EAs are accessible based on the normal
MAC and DAC file/directory protections, and system attributes are
limited to kernel-originated or appropriately privileged userland
requests.
o These API changes occur at several levels: the namespace argument is
introduced in the extattr_{get,set}_file() system call interfaces,
at the vnode operation level in the vop_{get,set}extattr() interfaces,
and in the UFS extended attribute implementation. Changes are also
introduced in the VFS extattrctl() interface (system call, VFS,
and UFS implementation), where the arguments are modified to include
a namespace field, as well as modified to advoid direct access to
userspace variables from below the VFS layer (in the style of recent
changes to mount by adrian@FreeBSD.org). This required some cleanup
and bug fixing regarding VFS locks and the VFS interface, as a vnode
pointer may now be optionally submitted to the VFS_EXTATTRCTL()
call. Updated documentation for the VFS interface will be committed
shortly.
o In the near future, the auto-starting feature will be updated to
search two sub-directories to the ".attribute" directory in appropriate
file systems: "user" and "system" to locate attributes intended for
those namespaces, as the single filename is no longer sufficient
to indicate what namespace the attribute is intended for. Until this
is committed, all attributes auto-started by UFS will be placed in
the EXTATTR_NAMESPACE_SYSTEM namespace.
o The default POSIX.1e attribute names for ACLs and Capabilities have
been updated to no longer include the '$' in their filename. As such,
if you're using these features, you'll need to rename the attribute
backing files to the same names without '$' symbols in front.
o Note that these changes will require changes in userland, which will
be committed shortly. These include modifications to the extended
attribute utilities, as well as to libutil for new namespace
string conversion routines. Once the matching userland changes are
committed, a buildworld is recommended to update all the necessary
include files and verify that the kernel and userland environments
are in sync. Note: If you do not use extended attributes (most people
won't), upgrading is not imperative although since the system call
API has changed, the new userland extended attribute code will no longer
compile with old include files.
o Couple of minor cleanups while I'm there: make more code compilation
conditional on FFS_EXTATTR, which should recover a bit of space on
kernels running without EA's, as well as update copyright dates.
Obtained from: TrustedBSD Project
2001-03-15 02:54:29 +00:00
|
|
|
const char *attrname); }
|
2000-01-19 06:01:07 +00:00
|
|
|
356 STD BSD { int extattr_set_file(const char *path, \
|
2001-03-19 05:44:15 +00:00
|
|
|
int attrnamespace, const char *attrname, \
|
o Change the API and ABI of the Extended Attribute kernel interfaces to
introduce a new argument, "namespace", rather than relying on a first-
character namespace indicator. This is in line with more recent
thinking on EA interfaces on various mailing lists, including the
posix1e, Linux acl-devel, and trustedbsd-discuss forums. Two namespaces
are defined by default, EXTATTR_NAMESPACE_SYSTEM and
EXTATTR_NAMESPACE_USER, where the primary distinction lies in the
access control model: user EAs are accessible based on the normal
MAC and DAC file/directory protections, and system attributes are
limited to kernel-originated or appropriately privileged userland
requests.
o These API changes occur at several levels: the namespace argument is
introduced in the extattr_{get,set}_file() system call interfaces,
at the vnode operation level in the vop_{get,set}extattr() interfaces,
and in the UFS extended attribute implementation. Changes are also
introduced in the VFS extattrctl() interface (system call, VFS,
and UFS implementation), where the arguments are modified to include
a namespace field, as well as modified to advoid direct access to
userspace variables from below the VFS layer (in the style of recent
changes to mount by adrian@FreeBSD.org). This required some cleanup
and bug fixing regarding VFS locks and the VFS interface, as a vnode
pointer may now be optionally submitted to the VFS_EXTATTRCTL()
call. Updated documentation for the VFS interface will be committed
shortly.
o In the near future, the auto-starting feature will be updated to
search two sub-directories to the ".attribute" directory in appropriate
file systems: "user" and "system" to locate attributes intended for
those namespaces, as the single filename is no longer sufficient
to indicate what namespace the attribute is intended for. Until this
is committed, all attributes auto-started by UFS will be placed in
the EXTATTR_NAMESPACE_SYSTEM namespace.
o The default POSIX.1e attribute names for ACLs and Capabilities have
been updated to no longer include the '$' in their filename. As such,
if you're using these features, you'll need to rename the attribute
backing files to the same names without '$' symbols in front.
o Note that these changes will require changes in userland, which will
be committed shortly. These include modifications to the extended
attribute utilities, as well as to libutil for new namespace
string conversion routines. Once the matching userland changes are
committed, a buildworld is recommended to update all the necessary
include files and verify that the kernel and userland environments
are in sync. Note: If you do not use extended attributes (most people
won't), upgrading is not imperative although since the system call
API has changed, the new userland extended attribute code will no longer
compile with old include files.
o Couple of minor cleanups while I'm there: make more code compilation
conditional on FFS_EXTATTR, which should recover a bit of space on
kernels running without EA's, as well as update copyright dates.
Obtained from: TrustedBSD Project
2001-03-15 02:54:29 +00:00
|
|
|
struct iovec *iovp, unsigned iovcnt); }
|
2000-01-19 06:01:07 +00:00
|
|
|
357 STD BSD { int extattr_get_file(const char *path, \
|
2001-03-19 05:44:15 +00:00
|
|
|
int attrnamespace, const char *attrname, \
|
o Change the API and ABI of the Extended Attribute kernel interfaces to
introduce a new argument, "namespace", rather than relying on a first-
character namespace indicator. This is in line with more recent
thinking on EA interfaces on various mailing lists, including the
posix1e, Linux acl-devel, and trustedbsd-discuss forums. Two namespaces
are defined by default, EXTATTR_NAMESPACE_SYSTEM and
EXTATTR_NAMESPACE_USER, where the primary distinction lies in the
access control model: user EAs are accessible based on the normal
MAC and DAC file/directory protections, and system attributes are
limited to kernel-originated or appropriately privileged userland
requests.
o These API changes occur at several levels: the namespace argument is
introduced in the extattr_{get,set}_file() system call interfaces,
at the vnode operation level in the vop_{get,set}extattr() interfaces,
and in the UFS extended attribute implementation. Changes are also
introduced in the VFS extattrctl() interface (system call, VFS,
and UFS implementation), where the arguments are modified to include
a namespace field, as well as modified to advoid direct access to
userspace variables from below the VFS layer (in the style of recent
changes to mount by adrian@FreeBSD.org). This required some cleanup
and bug fixing regarding VFS locks and the VFS interface, as a vnode
pointer may now be optionally submitted to the VFS_EXTATTRCTL()
call. Updated documentation for the VFS interface will be committed
shortly.
o In the near future, the auto-starting feature will be updated to
search two sub-directories to the ".attribute" directory in appropriate
file systems: "user" and "system" to locate attributes intended for
those namespaces, as the single filename is no longer sufficient
to indicate what namespace the attribute is intended for. Until this
is committed, all attributes auto-started by UFS will be placed in
the EXTATTR_NAMESPACE_SYSTEM namespace.
o The default POSIX.1e attribute names for ACLs and Capabilities have
been updated to no longer include the '$' in their filename. As such,
if you're using these features, you'll need to rename the attribute
backing files to the same names without '$' symbols in front.
o Note that these changes will require changes in userland, which will
be committed shortly. These include modifications to the extended
attribute utilities, as well as to libutil for new namespace
string conversion routines. Once the matching userland changes are
committed, a buildworld is recommended to update all the necessary
include files and verify that the kernel and userland environments
are in sync. Note: If you do not use extended attributes (most people
won't), upgrading is not imperative although since the system call
API has changed, the new userland extended attribute code will no longer
compile with old include files.
o Couple of minor cleanups while I'm there: make more code compilation
conditional on FFS_EXTATTR, which should recover a bit of space on
kernels running without EA's, as well as update copyright dates.
Obtained from: TrustedBSD Project
2001-03-15 02:54:29 +00:00
|
|
|
struct iovec *iovp, unsigned iovcnt); }
|
2000-01-19 06:01:07 +00:00
|
|
|
358 STD BSD { int extattr_delete_file(const char *path, \
|
2001-03-19 05:44:15 +00:00
|
|
|
int attrnamespace, const char *attrname); }
|
2000-01-14 02:53:29 +00:00
|
|
|
359 STD BSD { int aio_waitcomplete(struct aiocb **aiocbp, struct timespec *timeout); }
|
2000-01-16 16:34:26 +00:00
|
|
|
360 STD BSD { int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }
|
|
|
|
361 STD BSD { int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }
|
2000-04-16 18:53:38 +00:00
|
|
|
362 STD BSD { int kqueue(void); }
|
|
|
|
363 STD BSD { int kevent(int fd, \
|
2000-07-18 19:31:52 +00:00
|
|
|
const struct kevent *changelist, int nchanges, \
|
|
|
|
struct kevent *eventlist, int nevents, \
|
|
|
|
const struct timespec *timeout); }
|
2000-06-15 23:08:17 +00:00
|
|
|
364 STD BSD { int __cap_get_proc(struct cap *cap_p); }
|
|
|
|
365 STD BSD { int __cap_set_proc(struct cap *cap_p); }
|
2000-07-13 20:31:24 +00:00
|
|
|
366 STD BSD { int __cap_get_fd(int fd, struct cap *cap_p); }
|
|
|
|
367 STD BSD { int __cap_get_file(const char *path_p, struct cap *cap_p); }
|
|
|
|
368 STD BSD { int __cap_set_fd(int fd, struct cap *cap_p); }
|
|
|
|
369 STD BSD { int __cap_set_file(const char *path_p, struct cap *cap_p); }
|
2000-12-01 08:57:47 +00:00
|
|
|
370 NODEF NOHIDE lkmressys lkmressys nosys_args int
|
2001-03-31 16:20:05 +00:00
|
|
|
371 STD BSD { int extattr_set_fd(int fd, int attrnamespace, \
|
|
|
|
const char *attrname, struct iovec *iovp, \
|
|
|
|
int iovcnt); }
|
|
|
|
372 STD BSD { int extattr_get_fd(int fd, int attrnamespace, \
|
|
|
|
const char *attrname, struct iovec *iovp, \
|
|
|
|
int iovcnt); }
|
|
|
|
373 STD BSD { int extattr_delete_fd(int fd, int attrnamespace, \
|
|
|
|
const char *attrname); }
|
2001-04-11 20:20:40 +00:00
|
|
|
374 STD BSD { int __setugid(int flag); }
|