diff options
author | rwatson <rwatson@FreeBSD.org> | 2007-03-05 13:10:58 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2007-03-05 13:10:58 +0000 |
commit | 69938bd19626ef8e176215880689a282503f8eca (patch) | |
tree | 2dd9323b62ee1cbf7eb55c41c1cc9c518ebd0111 /sys/kern/p1003_1b.c | |
parent | bc98d02991feca044590da3d2fccb75e6f3f21da (diff) | |
download | FreeBSD-src-69938bd19626ef8e176215880689a282503f8eca.zip FreeBSD-src-69938bd19626ef8e176215880689a282503f8eca.tar.gz |
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.
Diffstat (limited to 'sys/kern/p1003_1b.c')
-rw-r--r-- | sys/kern/p1003_1b.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/p1003_1b.c b/sys/kern/p1003_1b.c index f6d86e8..69497a4 100644 --- a/sys/kern/p1003_1b.c +++ b/sys/kern/p1003_1b.c @@ -55,9 +55,9 @@ __FBSDID("$FreeBSD$"); MALLOC_DEFINE(M_P31B, "p1003.1b", "Posix 1003.1B"); -/* The system calls return ENOSYS if an entry is called that is - * not run-time supported. I am also logging since some programs - * start to use this when they shouldn't. That will be removed if annoying. +/* The system calls return ENOSYS if an entry is called that is not run-time + * supported. I am also logging since some programs start to use this when + * they shouldn't. That will be removed if annoying. */ int syscall_not_present(struct thread *td, const char *s, struct nosys_args *uap) |