Module Name: src
Committed By: skrll
Date: Thu Jun 22 09:05:09 UTC 2017
Modified Files:
src/sys/kern: kern_lwp.c
Log Message:
Unwrap two lines. NFC.
To generate a diff of this commit:
cvs rdiff -u -r1.189 -r1.190 src/sys/kern/kern_lwp.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/kern_lwp.c
diff -u src/sys/kern/kern_lwp.c:1.189 src/sys/kern/kern_lwp.c:1.190
--- src/sys/kern/kern_lwp.c:1.189 Thu Jun 1 02:45:13 2017
+++ src/sys/kern/kern_lwp.c Thu Jun 22 09:05:09 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_lwp.c,v 1.189 2017/06/01 02:45:13 chs Exp $ */
+/* $NetBSD: kern_lwp.c,v 1.190 2017/06/22 09:05:09 skrll Exp $ */
/*-
* Copyright (c) 2001, 2006, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -211,7 +211,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_lwp.c,v 1.189 2017/06/01 02:45:13 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_lwp.c,v 1.190 2017/06/22 09:05:09 skrll Exp $");
#include "opt_ddb.h"
#include "opt_lockdebug.h"
@@ -887,8 +887,7 @@ lwp_create(lwp_t *l1, proc_t *p2, vaddr_
pcu_save_all(l1);
uvm_lwp_setuarea(l2, uaddr);
- uvm_lwp_fork(l1, l2, stack, stacksize, func,
- (arg != NULL) ? arg : l2);
+ uvm_lwp_fork(l1, l2, stack, stacksize, func, (arg != NULL) ? arg : l2);
if ((flags & LWP_PIDLID) != 0) {
lid = proc_alloc_pid(p2);