Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Unwrap two lines. NFC.



details:   https://anonhg.NetBSD.org/src/rev/f255d69b3e54
branches:  trunk
changeset: 824876:f255d69b3e54
user:      skrll <skrll%NetBSD.org@localhost>
date:      Thu Jun 22 09:05:09 2017 +0000

description:
Unwrap two lines. NFC.

diffstat:

 sys/kern/kern_lwp.c |  7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r 017df4c4128d -r f255d69b3e54 sys/kern/kern_lwp.c
--- a/sys/kern/kern_lwp.c       Thu Jun 22 09:05:02 2017 +0000
+++ b/sys/kern/kern_lwp.c       Thu Jun 22 09:05:09 2017 +0000
@@ -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 @@
        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);



Home | Main Index | Thread Index | Old Index