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/vfs_cache.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/vfs_cache.c')
-rw-r--r-- | sys/kern/vfs_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index c20fd96..44005b0 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -690,7 +690,7 @@ static int disablecwd; SYSCTL_INT(_debug, OID_AUTO, disablecwd, CTLFLAG_RW, &disablecwd, 0, "Disable the getcwd syscall"); -/* Implementation of the getcwd syscall */ +/* Implementation of the getcwd syscall. */ int __getcwd(td, uap) struct thread *td; |