unify static and dynamic linked implementations of thread-local storage
[oweals/musl.git] / src / internal / libc.h
index 212f0e8bd8ff8263aad8821bc87420a965b0b0cd..5e14518312c77025d107f3f11a2d1ea626f2734a 100644 (file)
@@ -8,9 +8,13 @@
 struct __locale_map;
 
 struct __locale_struct {
-       volatile int ctype_utf8;
-       char *messages_name;
-       struct __locale_map *volatile cat[4];
+       const struct __locale_map *volatile cat[6];
+};
+
+struct tls_module {
+       struct tls_module *next;
+       void *image;
+       size_t len, size, align, offset;
 };
 
 struct __libc {
@@ -19,9 +23,8 @@ struct __libc {
        int secure;
        volatile int threads_minus_1;
        size_t *auxv;
-       FILE *ofl_head;
-       volatile int ofl_lock[2];
-       size_t tls_size;
+       struct tls_module *tls_head;
+       size_t tls_size, tls_align, tls_cnt;
        size_t page_size;
        struct __locale_struct global_locale;
 };