diff options
author | Florian Weimer <fweimer@redhat.com> | 2022-11-03 17:28:03 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2022-11-03 17:28:03 +0100 |
commit | 1f34a2328890aa192141f96449d25b77f666bf47 (patch) | |
tree | 283ca2a4b46cf069da45f40663e779003064bcdc /sysdeps/riscv/nptl | |
parent | fb6ee7ba8122330ac819556a42cc56db07d9da76 (diff) | |
download | glibc-1f34a2328890aa192141f96449d25b77f666bf47.tar glibc-1f34a2328890aa192141f96449d25b77f666bf47.tar.gz glibc-1f34a2328890aa192141f96449d25b77f666bf47.tar.bz2 glibc-1f34a2328890aa192141f96449d25b77f666bf47.zip |
elf: Introduce <dl-call_tls_init_tp.h> 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 <szabolcs.nagy@arm.com>
Diffstat (limited to 'sysdeps/riscv/nptl')
-rw-r--r-- | sysdeps/riscv/nptl/tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/riscv/nptl/tls.h b/sysdeps/riscv/nptl/tls.h index 700c2f5189..b221980399 100644 --- a/sysdeps/riscv/nptl/tls.h +++ b/sysdeps/riscv/nptl/tls.h @@ -79,7 +79,7 @@ typedef struct /* Code to initially initialize the thread pointer. */ # define TLS_INIT_TP(tcbp) \ - ({ __thread_self = (char*)tcbp + TLS_TCB_OFFSET; NULL; }) + ({ __thread_self = (char*)tcbp + TLS_TCB_OFFSET; true; }) /* Return the address of the dtv for the current thread. */ # define THREAD_DTV() \ |