k&r-style removal in kern_synch.c

Peter Kadau peter.kadau at tuebingen.mpg.de
Thu Mar 4 12:42:02 PST 2004


Hi !

This changes the definition-style of tsleep and sched_setup
in kern/kern_synch.c from k&r to ansi (hopefully).
(And this time I didn't change any comments.)

Cheers
Peter
--
<peter.kadau at xxxxxxxxxxxxxxxx>
Campus der Max-Planck-Institute Tübingen
Netzwerk- und Systemadministration
Tel: +49 7071 601 598
Fax: +49 7071 601 616
Index: kern/kern_synch.c
===================================================================
RCS file: /local/dragonfly/src/sys/kern/kern_synch.c,v
retrieving revision 1.27
diff -u -r1.27 kern_synch.c
--- kern/kern_synch.c	30 Jan 2004 05:42:17 -0000	1.27
+++ kern/kern_synch.c	4 Mar 2004 19:36:44 -0000
@@ -366,10 +366,7 @@
  * YYY priority now unused
  */
 int
-tsleep(ident, flags, wmesg, timo)
-	void *ident;
-	int flags, timo;
-	const char *wmesg;
+tsleep(void *ident, int flags, const char *wmesg, int timo)
 {
 	struct thread *td = curthread;
 	struct proc *p = td->td_proc;		/* may be NULL */
@@ -845,8 +842,7 @@
 
 /* ARGSUSED */
 static void
-sched_setup(dummy)
-	void *dummy;
+sched_setup(void *dummy)
 {
 
 	callout_init(&loadav_callout);




More information about the Submit mailing list