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;
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to