summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2000-12-18 07:10:04 +0000
committerjake <jake@FreeBSD.org>2000-12-18 07:10:04 +0000
commit268420c6a1fba68448b1c5170f7fec2c45da290d (patch)
treef7e4d7e7181444095742145dd21c836d8abe7a28 /sys
parent83f1ac12c644cf46d5cb2095946aa2e9366413b7 (diff)
downloadFreeBSD-src-268420c6a1fba68448b1c5170f7fec2c45da290d.zip
FreeBSD-src-268420c6a1fba68448b1c5170f7fec2c45da290d.tar.gz
Whitespace. Fix a comment block and an if statement that were wider
than 80 characters.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/kern_exit.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c
index 4d7c2b2..816d062 100644
--- a/sys/kern/kern_exit.c
+++ b/sys/kern/kern_exit.c
@@ -424,14 +424,16 @@ loop:
p->p_pid != uap->pid && p->p_pgid != -uap->pid)
continue;
- /* This special case handles a kthread spawned by linux_clone
- * (see linux_misc.c). The linux_wait4 and linux_waitpid functions
- * need to be able to distinguish between waiting on a process and
- * waiting on a thread. It is a thread if p_sigparent is not SIGCHLD,
- * and the WLINUXCLONE option signifies we want to wait for threads
- * and not processes.
+ /*
+ * This special case handles a kthread spawned by linux_clone
+ * (see linux_misc.c). The linux_wait4 and linux_waitpid
+ * functions need to be able to distinguish between waiting
+ * on a process and waiting on a thread. It is a thread if
+ * p_sigparent is not SIGCHLD, and the WLINUXCLONE option
+ * signifies we want to wait for threads and not processes.
*/
- if ((p->p_sigparent != SIGCHLD) ^ ((uap->options & WLINUXCLONE) != 0))
+ if ((p->p_sigparent != SIGCHLD) ^
+ ((uap->options & WLINUXCLONE) != 0))
continue;
nfound++;
OpenPOWER on IntegriCloud