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/sys_process.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'sys/kern/sys_process.c') diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index 10184c0..785d45d 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -368,9 +368,6 @@ struct ptrace_args { #define COPYIN(u, k, s) copyin(u, k, s) #define COPYOUT(k, u, s) copyout(k, u, s) #endif -/* - * MPSAFE - */ int ptrace(struct thread *td, struct ptrace_args *uap) { -- cgit v1.1