diff options
author | rwatson <rwatson@FreeBSD.org> | 2004-06-22 04:29:27 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2004-06-22 04:29:27 +0000 |
commit | 761a6e100d9e3e2e0c81dda55c2c32ed9e58fc71 (patch) | |
tree | 6acadfb28191a3de30d8feabb565d609f1287504 | |
parent | 8a33376794b4da9b66b8e399df42c8f38c02836b (diff) | |
download | FreeBSD-src-761a6e100d9e3e2e0c81dda55c2c32ed9e58fc71.zip FreeBSD-src-761a6e100d9e3e2e0c81dda55c2c32ed9e58fc71.tar.gz |
Mark link() system call as MPSAFE.
-rw-r--r-- | sys/kern/syscalls.master | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 3f7ac04..ce1287d 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -58,7 +58,7 @@ 7 MSTD { int wait4(int pid, int *status, int options, \ struct rusage *rusage); } wait4 wait_args int 8 MCOMPAT { int creat(char *path, int mode); } -9 STD { int link(char *path, char *link); } +9 MSTD { int link(char *path, char *link); } 10 STD { int unlink(char *path); } 11 OBSOL execv 12 STD { int chdir(char *path); } |