Module Name:    src
Committed By:   kamil
Date:           Sun Aug 19 02:10:42 UTC 2018

Modified Files:
        src/lib/libpthread: pthread.c

Log Message:
Drop a duplicate instruction line

No functional change intended.


To generate a diff of this commit:
cvs rdiff -u -r1.151 -r1.152 src/lib/libpthread/pthread.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libpthread/pthread.c
diff -u src/lib/libpthread/pthread.c:1.151 src/lib/libpthread/pthread.c:1.152
--- src/lib/libpthread/pthread.c:1.151	Fri Dec  8 09:24:31 2017
+++ src/lib/libpthread/pthread.c	Sun Aug 19 02:10:42 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: pthread.c,v 1.151 2017/12/08 09:24:31 kre Exp $	*/
+/*	$NetBSD: pthread.c,v 1.152 2018/08/19 02:10:42 kamil Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2002, 2003, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread.c,v 1.151 2017/12/08 09:24:31 kre Exp $");
+__RCSID("$NetBSD: pthread.c,v 1.152 2018/08/19 02:10:42 kamil Exp $");
 
 #define	__EXPOSE_STACK	1
 
@@ -1322,7 +1322,6 @@ pthread__initmainstack(void)
 
 	for (aux = _dlauxinfo(); aux->a_type != AT_NULL; ++aux) {
 		if (aux->a_type == AT_STACKBASE) {
-			pthread__main->pt_stack.ss_sp = (void *)aux->a_v;
 #ifdef __MACHINE_STACK_GROWS_UP
 			pthread__main->pt_stack.ss_sp = (void *)aux->a_v;
 #else

Reply via email to