diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2007-11-27 18:04:48 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2007-11-27 18:04:48 +0000 |
commit | 298987f5b9aac833d9d0d4f784411b4d7019db29 (patch) | |
tree | cc24b9588063b85e33ac895e05b5cbda08c12df4 /sys | |
parent | a38b2fbb3705b793598a6e2cf7ce27746f398676 (diff) |
Mark getpid as NOLOCK just for testing.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 9258062ef34..0efaa4faa4e 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.86 2006/09/22 17:35:41 pedro Exp $ +; $OpenBSD: syscalls.master,v 1.87 2007/11/27 18:04:47 art Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -76,7 +76,7 @@ int flags); } ogetfsstat 19 COMPAT_43 { long sys_lseek(int fd, long offset, int whence); } \ olseek -20 STD { pid_t sys_getpid(void); } +20 STD NOLOCK { pid_t sys_getpid(void); } 21 STD { int sys_mount(const char *type, const char *path, \ int flags, void *data); } 22 STD { int sys_unmount(const char *path, int flags); } |