From 300d4098cfd89ed7f8fca1a3333256308124f41b Mon Sep 17 00:00:00 2001 From: rwatson Date: Sun, 4 Mar 2007 22:36:48 +0000 Subject: Remove 'MPSAFE' annotations from the comments above most system calls: all system calls now enter without Giant held, and then in some cases, acquire Giant explicitly. Remove a number of other MPSAFE annotations in the credential code and tweak one or two other adjacent comments. --- sys/kern/kern_exit.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'sys/kern/kern_exit.c') diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c index 6910903..6a64709 100644 --- a/sys/kern/kern_exit.c +++ b/sys/kern/kern_exit.c @@ -91,8 +91,6 @@ void (*nlminfo_release_p)(struct proc *p); /* * exit -- * Death of process. - * - * MPSAFE */ void sys_exit(struct thread *td, struct sys_exit_args *uap) @@ -553,9 +551,6 @@ struct abort2_args { }; #endif -/* - * MPSAFE. - */ int abort2(struct thread *td, struct abort2_args *uap) { @@ -628,8 +623,6 @@ out: #ifdef COMPAT_43 /* * The dirty work is handled by kern_wait(). - * - * MPSAFE. */ int owait(struct thread *td, struct owait_args *uap __unused) @@ -645,8 +638,6 @@ owait(struct thread *td, struct owait_args *uap __unused) /* * The dirty work is handled by kern_wait(). - * - * MPSAFE. */ int wait4(struct thread *td, struct wait_args *uap) -- cgit v1.1