From 1f34a2328890aa192141f96449d25b77f666bf47 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 3 Nov 2022 17:28:03 +0100 Subject: elf: Introduce and call_tls_init_tp (bug 29249) This makes it more likely that the compiler can compute the strlen argument in _startup_fatal at compile time, which is required to avoid a dependency on strlen this early during process startup. Reviewed-by: Szabolcs Nagy --- sysdeps/i386/nptl/tls.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sysdeps/i386') diff --git a/sysdeps/i386/nptl/tls.h b/sysdeps/i386/nptl/tls.h index 91090bf..553b55b 100644 --- a/sysdeps/i386/nptl/tls.h +++ b/sysdeps/i386/nptl/tls.h @@ -203,8 +203,7 @@ tls_fill_user_desc (union user_desc_init *desc, which is necessary since we have changed it. */ \ TLS_SET_GS (_segdescr.desc.entry_number * 8 + 3); \ \ - _result == 0 ? NULL \ - : "set_thread_area failed when setting up thread-local storage\n"; }) + _result == 0; }) # define TLS_DEFINE_INIT_TP(tp, pd) \ union user_desc_init _segdescr; \ -- cgit v1.1