aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2007-03-05 13:10:58 +0000
committerRobert Watson <rwatson@FreeBSD.org>2007-03-05 13:10:58 +0000
commit873fbcd776b5c6e0b7caa1f1f87cc91a12d339db (patch)
tree2dd9323b62ee1cbf7eb55c41c1cc9c518ebd0111 /sys/kern/kern_sig.c
parent491deb49c4d5eb6b35205a3079202be044f81742 (diff)
downloadsrc-873fbcd776b5c6e0b7caa1f1f87cc91a12d339db.tar.gz
src-873fbcd776b5c6e0b7caa1f1f87cc91a12d339db.zip
Further system call comment cleanup:
- Remove also "MP SAFE" after prior "MPSAFE" pass. (suggested by bde) - Remove extra blank lines in some cases. - Add extra blank lines in some cases. - Remove no-op comments consisting solely of the function name, the word "syscall", or the system call name. - Add punctuation. - Re-wrap some comments.
Notes
Notes: svn path=/head/; revision=167232
Diffstat (limited to 'sys/kern/kern_sig.c')
-rw-r--r--sys/kern/kern_sig.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index c10ce458e9c4..663dba2f9cb6 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -546,8 +546,6 @@ sigqueue_delete_stopmask_proc(struct proc *p)
* Determine signal that should be delivered to process p, the current
* process, 0 if none. If there is a pending stop signal with default
* action, the process stops in issignal().
- *
- * MP SAFE.
*/
int
cursig(struct thread *td)
@@ -1023,10 +1021,6 @@ kern_sigprocmask(td, how, set, oset, old)
return (error);
}
-/*
- * sigprocmask() - MP SAFE
- */
-
#ifndef _SYS_SYSPROTO_H_
struct sigprocmask_args {
int how;
@@ -1058,9 +1052,6 @@ sigprocmask(td, uap)
}
#ifdef COMPAT_43 /* XXX - COMPAT_FBSD3 */
-/*
- * osigprocmask() - MP SAFE
- */
#ifndef _SYS_SYSPROTO_H_
struct osigprocmask_args {
int how;
@@ -1433,8 +1424,8 @@ osigsetmask(td, uap)
#endif /* COMPAT_43 */
/*
- * Suspend calling thread until signal, providing mask to be set
- * in the meantime.
+ * Suspend calling thread until signal, providing mask to be set in the
+ * meantime.
*/
#ifndef _SYS_SYSPROTO_H_
struct sigsuspend_args {
@@ -1754,7 +1745,6 @@ struct sigqueue_args {
/* union sigval */ void *value;
};
#endif
-
int
sigqueue(struct thread *td, struct sigqueue_args *uap)
{