summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2025-11-22 11:55:40 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2025-11-22 21:55:02 +0100
commit0f7b73f2ed70e783cd02ab77503645b03ee1d332 (patch)
treefa261add8baf7b670c8c4e551421b1f86aa46f83 /sysdeps
parentc71ee65a7932e68f6d5b6390150378624387a9ac (diff)
htl: Fix conditions for thread list variablesHEADmaster
_dl_stack_used/user/etc. vs _dl_pthread_num_threads etc. is really an nptl vs htl question rather than pthread being in libc.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/ldsodefs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h
index cb318ade7b..8c3541602f 100644
--- a/sysdeps/generic/ldsodefs.h
+++ b/sysdeps/generic/ldsodefs.h
@@ -451,7 +451,7 @@ struct rtld_global
size_t count;
void *list[50];
} *_dl_scope_free_list;
-#if PTHREAD_IN_LIBC
+#if !defined __PTHREAD_HTL
/* List of active thread stacks, with memory managed by glibc. */
EXTERN list_t _dl_stack_used;