From 69938bd19626ef8e176215880689a282503f8eca Mon Sep 17 00:00:00 2001 From: rwatson Date: Mon, 5 Mar 2007 13:10:58 +0000 Subject: 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. --- sys/kern/sys_generic.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'sys/kern/sys_generic.c') diff --git a/sys/kern/sys_generic.c b/sys/kern/sys_generic.c index 26d20ef..268224a 100644 --- a/sys/kern/sys_generic.c +++ b/sys/kern/sys_generic.c @@ -83,9 +83,6 @@ static int dofilewrite(struct thread *, int, struct file *, struct uio *, off_t, int); static void doselwakeup(struct selinfo *, int); -/* - * Read system call. - */ #ifndef _SYS_SYSPROTO_H_ struct read_args { int fd; @@ -281,9 +278,6 @@ dofileread(td, fd, fp, auio, offset, flags) return (error); } -/* - * Write system call - */ #ifndef _SYS_SYSPROTO_H_ struct write_args { int fd; @@ -482,9 +476,6 @@ dofilewrite(td, fd, fp, auio, offset, flags) return (error); } -/* - * Ioctl system call. - */ #ifndef _SYS_SYSPROTO_H_ struct ioctl_args { int fd; @@ -620,9 +611,6 @@ struct cv selwait; u_int nselcoll; /* Select collisions since boot */ SYSCTL_UINT(_kern, OID_AUTO, nselcoll, CTLFLAG_RD, &nselcoll, 0, ""); -/* - * Select system call. - */ #ifndef _SYS_SYSPROTO_H_ struct select_args { int nd; @@ -849,9 +837,6 @@ selscan(td, ibits, obits, nfd) return (0); } -/* - * Poll system call. - */ #ifndef _SYS_SYSPROTO_H_ struct poll_args { struct pollfd *fds; -- cgit v1.1