aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--sysdeps/generic/libc-tls.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 76c29aa83d..5c3c53a092 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2002-11-03 Ulrich Drepper <drepper@redhat.com>
+ * sysdeps/generic/libc-tls.c: Define _dl_tls_static_used.
+
* po/ca.po: Update from translation team.
* po/es.po: Likewise.
diff --git a/sysdeps/generic/libc-tls.c b/sysdeps/generic/libc-tls.c
index 92ea62fce4..64fe7c3ad7 100644
--- a/sysdeps/generic/libc-tls.c
+++ b/sysdeps/generic/libc-tls.c
@@ -60,6 +60,8 @@ struct dtv_slotinfo_list *_dl_tls_dtv_slotinfo_list;
size_t _dl_tls_static_nelem;
/* Size of the static TLS block. */
size_t _dl_tls_static_size;
+/* Size actually allocated in the static TLS block. */
+size_t _dl_tls_static_used;
/* Alignment requirement of the static TLS block. */
size_t _dl_tls_static_align;