diff options
author | rwatson <rwatson@FreeBSD.org> | 2005-05-28 12:59:33 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2005-05-28 12:59:33 +0000 |
commit | fa7cf37c7264fec2cd8f3b787d2198153d3df0f7 (patch) | |
tree | 4fa21983edca2415d157c443cf46385ab017291d /sys | |
parent | 66d882141ff0bfa24c36f578dcf151a5e857fb8f (diff) | |
download | FreeBSD-src-fa7cf37c7264fec2cd8f3b787d2198153d3df0f7.zip FreeBSD-src-fa7cf37c7264fec2cd8f3b787d2198153d3df0f7.tar.gz |
Mark fhopen(), fhstat(), and fhstatfs() as MSTD, since they now
acquire Giant themselves.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/syscalls.master | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 9f32766..498b584 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -422,8 +422,8 @@ ; XXX 297 is 300 in NetBSD 297 COMPAT4 { int fhstatfs(const struct fhandle *u_fhp, \ struct ostatfs *buf); } -298 STD { int fhopen(const struct fhandle *u_fhp, int flags); } -299 STD { int fhstat(const struct fhandle *u_fhp, struct stat *sb); } +298 MSTD { int fhopen(const struct fhandle *u_fhp, int flags); } +299 MSTD { int fhstat(const struct fhandle *u_fhp, struct stat *sb); } ; syscall numbers for FreeBSD 300 MSTD { int modnext(int modid); } 301 MSTD { int modstat(int modid, struct module_stat* stat); } @@ -565,7 +565,7 @@ int flags); } 396 MSTD { int statfs(char *path, struct statfs *buf); } 397 MSTD { int fstatfs(int fd, struct statfs *buf); } -398 STD { int fhstatfs(const struct fhandle *u_fhp, \ +398 MSTD { int fhstatfs(const struct fhandle *u_fhp, \ struct statfs *buf); } 399 UNIMPL nosys 400 MNOSTD { int ksem_close(semid_t id); } |