Module Name:    src
Committed By:   kamil
Date:           Wed Jan 29 15:31:14 UTC 2020

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

Log Message:
Revert previous

Two assignments are correct.


To generate a diff of this commit:
cvs rdiff -u -r1.159 -r1.160 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.159 src/lib/libpthread/pthread.c:1.160
--- src/lib/libpthread/pthread.c:1.159	Wed Jan 29 15:15:00 2020
+++ src/lib/libpthread/pthread.c	Wed Jan 29 15:31:14 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: pthread.c,v 1.159 2020/01/29 15:15:00 kamil Exp $	*/
+/*	$NetBSD: pthread.c,v 1.160 2020/01/29 15:31:14 kamil Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2002, 2003, 2006, 2007, 2008, 2020
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread.c,v 1.159 2020/01/29 15:15:00 kamil Exp $");
+__RCSID("$NetBSD: pthread.c,v 1.160 2020/01/29 15:31:14 kamil Exp $");
 
 #define	__EXPOSE_STACK	1
 
@@ -362,9 +362,8 @@ pthread__getstack(pthread_t newthread, c
 		    newthread->pt_stack.ss_size == stacksize &&
 		    newthread->pt_guardsize == guardsize)
 			return 0;
-#ifdef __MACHINE_STACK_GROWS_UP
 		stackbase2 = newthread->pt_stack.ss_sp;
-#else
+#ifndef __MACHINE_STACK_GROWS_UP
 		stackbase2 = (char *)stackbase2 - newthread->pt_guardsize;
 #endif
 		munmap(stackbase2,

Reply via email to