summaryrefslogtreecommitdiff
path: root/elf/tst-tlsmod15b.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-03-24 08:19:18 +0000
committerJakub Jelinek <jakub@redhat.com>2005-03-24 08:19:18 +0000
commit55a24b753a4f6e03ed23e16b2be847bd5c5642a7 (patch)
treec72d70578f8305f1cfedc9a24507d12c45a5ff1c /elf/tst-tlsmod15b.c
parentdfaef65dcfc165ef88957b7b4633499cbf612299 (diff)
Updated to fedora-glibc-20050324T0715cvs/fedora-glibc-2_3_4-17
Diffstat (limited to 'elf/tst-tlsmod15b.c')
-rw-r--r--elf/tst-tlsmod15b.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/elf/tst-tlsmod15b.c b/elf/tst-tlsmod15b.c
new file mode 100644
index 0000000000..4f63eab144
--- /dev/null
+++ b/elf/tst-tlsmod15b.c
@@ -0,0 +1,17 @@
+#include "tst-tls10.h"
+
+#ifdef USE_TLS__THREAD
+__thread int mod15b_var __attribute__((tls_model("initial-exec")));
+
+int
+in_dso (void)
+{
+ return mod15b_var;
+}
+#else
+int
+in_dso (void)
+{
+ return 0;
+}
+#endif