From: ian Date: Tue, 5 Jun 2012 13:12:13 +0000 (+0000) Subject: runtime: Comment out code adding TLS size to stack size. X-Git-Tag: upstream/4.9.2~12302 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9171843b508ecde2be3b04512d969f413901d925;p=platform%2Fupstream%2Flinaro-gcc.git runtime: Comment out code adding TLS size to stack size. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188238 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libgo/runtime/proc.c b/libgo/runtime/proc.c index 0adecb7..1a605a1 100644 --- a/libgo/runtime/proc.c +++ b/libgo/runtime/proc.c @@ -1122,6 +1122,7 @@ runtime_newm(void) stacksize = PTHREAD_STACK_MIN; +#if 0 #ifdef HAVE__DL_GET_TLS_STATIC_INFO { /* On GNU/Linux the static TLS size is taken out of @@ -1142,6 +1143,7 @@ runtime_newm(void) stacksize += tlssize; } #endif +#endif if(pthread_attr_setstacksize(&attr, stacksize) != 0) runtime_throw("pthread_attr_setstacksize");