diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2007-03-05 13:10:58 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2007-03-05 13:10:58 +0000 |
commit | 873fbcd776b5c6e0b7caa1f1f87cc91a12d339db (patch) | |
tree | 2dd9323b62ee1cbf7eb55c41c1cc9c518ebd0111 /sys/kern/sysv_shm.c | |
parent | 491deb49c4d5eb6b35205a3079202be044f81742 (diff) |
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/sysv_shm.c')
-rw-r--r-- | sys/kern/sysv_shm.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/kern/sysv_shm.c b/sys/kern/sysv_shm.c index 7c4978403b6a..574c3dee6a61 100644 --- a/sys/kern/sysv_shm.c +++ b/sys/kern/sysv_shm.c @@ -289,7 +289,6 @@ struct shmdt_args { const void *shmaddr; }; #endif - int shmdt(td, uap) struct thread *td; @@ -340,7 +339,6 @@ struct shmat_args { int shmflg; }; #endif - int kern_shmat(td, shmid, shmaddr, shmflg) struct thread *td; @@ -470,7 +468,6 @@ struct oshmctl_args { int cmd; struct oshmid_ds *ubuf; }; - static int oshmctl(td, uap) struct thread *td; @@ -532,7 +529,6 @@ struct shmctl_args { struct shmid_ds *buf; }; #endif - int kern_shmctl(td, shmid, cmd, buf, bufsz) struct thread *td; @@ -679,7 +675,6 @@ struct shmget_args { int shmflg; }; #endif - static int shmget_existing(td, uap, mode, segnum) struct thread *td; |