aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_context.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_context.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_context.c')
-rw-r--r--sys/kern/kern_context.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_context.c b/sys/kern/kern_context.c
index 8532a8f86994..f951fca4da96 100644
--- a/sys/kern/kern_context.c
+++ b/sys/kern/kern_context.c
@@ -39,9 +39,9 @@ __FBSDID("$FreeBSD$");
#include <sys/ucontext.h>
/*
- * The first two fields of a ucontext_t are the signal mask and
- * the machine context. The next field is uc_link; we want to
- * avoid destroying the link when copying out contexts.
+ * The first two fields of a ucontext_t are the signal mask and the machine
+ * context. The next field is uc_link; we want to avoid destroying the link
+ * when copying out contexts.
*/
#define UC_COPY_SIZE offsetof(ucontext_t, uc_link)