From bee71f8e97739cfb2b272cbf5c4822c634b7cac7 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 30 Apr 2014 14:54:58 +0200 Subject: score: Fix TLS size usage --- cpukit/score/src/threadinitialize.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'cpukit/score/src/threadinitialize.c') diff --git a/cpukit/score/src/threadinitialize.c b/cpukit/score/src/threadinitialize.c index f8e0e7d440..fb3d6c8589 100644 --- a/cpukit/score/src/threadinitialize.c +++ b/cpukit/score/src/threadinitialize.c @@ -43,6 +43,7 @@ bool _Thread_Initialize( Objects_Name name ) { + uintptr_t tls_size = _TLS_Get_size(); size_t actual_stack_size = 0; void *stack = NULL; #if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE ) @@ -52,12 +53,6 @@ bool _Thread_Initialize( size_t i; bool scheduler_allocated = false; - /* - * Do not use _TLS_Size here since this will lead GCC to assume that this - * symbol is not 0 and the later > 0 test will be optimized away. - */ - uintptr_t tls_size = (uintptr_t) _TLS_BSS_end - (uintptr_t) _TLS_Data_begin; - #if defined( RTEMS_SMP ) if ( rtems_configuration_is_smp_enabled() && !is_preemptible ) { return false; -- cgit v1.2.3