Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Nov 2012 06:22:15 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r243133 - in head/sys: compat/freebsd32 kern
Message-ID:  <201211160622.qAG6MF0B031676@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Fri Nov 16 06:22:14 2012
New Revision: 243133
URL: http://svnweb.freebsd.org/changeset/base/243133

Log:
  Style fixes for r242958.
  
  Reported and reviewed by:	bde
  MFC after:	28 days

Modified:
  head/sys/compat/freebsd32/freebsd32_misc.c
  head/sys/kern/kern_exit.c

Modified: head/sys/compat/freebsd32/freebsd32_misc.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_misc.c	Fri Nov 16 05:55:56 2012	(r243132)
+++ head/sys/compat/freebsd32/freebsd32_misc.c	Fri Nov 16 06:22:14 2012	(r243133)
@@ -193,13 +193,11 @@ freebsd32_wait6(struct thread *td, struc
 		wrup = &wru;
 	else
 		wrup = NULL;
-
 	if (uap->info != NULL) {
 		sip = &si;
 		bzero(sip, sizeof(*sip));
 	} else
 		sip = NULL;
-
 	error = kern_wait6(td, uap->idtype, uap->id, &status, uap->options,
 	    wrup, sip);
 	if (error != 0)

Modified: head/sys/kern/kern_exit.c
==============================================================================
--- head/sys/kern/kern_exit.c	Fri Nov 16 05:55:56 2012	(r243132)
+++ head/sys/kern/kern_exit.c	Fri Nov 16 06:22:14 2012	(r243133)
@@ -710,10 +710,10 @@ int
 sys_wait6(struct thread *td, struct wait6_args *uap)
 {
 	struct __wrusage wru, *wrup;
-	siginfo_t  si, *sip;
-	int error, status;
+	siginfo_t si, *sip;
 	idtype_t idtype;
 	id_t id;
+	int error, status;
 
 	idtype = uap->idtype;
 	id = uap->id;
@@ -932,7 +932,6 @@ proc_to_reap(struct thread *td, struct p
 	default:
 		PROC_UNLOCK(p);
 		return (0);
-		break;
 	}
 
 	if (p_canwait(td, p)) {
@@ -962,7 +961,7 @@ proc_to_reap(struct thread *td, struct p
 	PROC_SLOCK(p);
 
 	if (siginfo != NULL) {
-		bzero (siginfo, sizeof (*siginfo));
+		bzero(siginfo, sizeof(*siginfo));
 		siginfo->si_errno = 0;
 
 		/*
@@ -1046,8 +1045,8 @@ kern_wait(struct thread *td, pid_t pid, 
 	else
 		wrup = NULL;
 	/*
-	 *  For backward compatibility we implicitly add flags WEXITED
-	 *  and WTRAPPED here.
+	 * For backward compatibility we implicitly add flags WEXITED
+	 * and WTRAPPED here.
 	 */
 	options |= WEXITED | WTRAPPED;
 	ret = kern_wait6(td, idtype, id, status, options, wrup, NULL);
@@ -1069,8 +1068,7 @@ kern_wait6(struct thread *td, idtype_t i
 
 	q = td->td_proc;
 
-	if ((pid_t)id == WAIT_MYPGRP &&
-	    (idtype == P_PID || idtype == P_PGID)) {
+	if ((pid_t)id == WAIT_MYPGRP && (idtype == P_PID || idtype == P_PGID)) {
 		id = (id_t)q->p_pgid;
 		idtype = P_PGID;
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211160622.qAG6MF0B031676>