diff options
author | John Baldwin <jhb@FreeBSD.org> | 2006-07-10 15:55:17 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2006-07-10 15:55:17 +0000 |
commit | 036fd5f3bca443e2349a3797cf14ecf8eeb63f29 (patch) | |
tree | b217d6ae2217906932a27bdbeebcdb2db7915675 /sys/i386 | |
parent | ff5ff7611680ad5ed5c1138ce589e246ce81c74d (diff) |
Mark ibcs2_msgsys(), ibcs2_semsys(), and ibcs2_shmsys() MPSAFE.
Notes
Notes:
svn path=/head/; revision=160237
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/ibcs2/syscalls.master | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/ibcs2/syscalls.master b/sys/i386/ibcs2/syscalls.master index 1a9b590be262..ed79cb572dd0 100644 --- a/sys/i386/ibcs2/syscalls.master +++ b/sys/i386/ibcs2/syscalls.master @@ -106,13 +106,13 @@ 46 AUE_SETGID MSTD { int ibcs2_setgid(int gid); } 47 AUE_GETGID MNOPROTO { gid_t getgid(void); } 48 AUE_NULL MSTD { int ibcs2_sigsys(int sig, ibcs2_sig_t fp); } -49 AUE_MSGSYS STD { int ibcs2_msgsys(int which, int a2, \ +49 AUE_MSGSYS MSTD { int ibcs2_msgsys(int which, int a2, \ int a3, int a4, int a5, int a6); } 50 AUE_NULL MSTD { int ibcs2_sysi86(int cmd, int *arg); } 51 AUE_NULL UNIMPL ibcs2_acct -52 AUE_SHMSYS STD { int ibcs2_shmsys(int which, int a2, \ +52 AUE_SHMSYS MSTD { int ibcs2_shmsys(int which, int a2, \ int a3, int a4); } -53 AUE_SEMSYS STD { int ibcs2_semsys(int which, int a2, \ +53 AUE_SEMSYS MSTD { int ibcs2_semsys(int which, int a2, \ int a3, int a4, int a5); } 54 AUE_IOCTL STD { int ibcs2_ioctl(int fd, int cmd, \ caddr_t data); } |