aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/thread_local/thread_local2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/thread_local/thread_local2.c')
-rw-r--r--test/monniaux/thread_local/thread_local2.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/monniaux/thread_local/thread_local2.c b/test/monniaux/thread_local/thread_local2.c
new file mode 100644
index 00000000..ba244ac6
--- /dev/null
+++ b/test/monniaux/thread_local/thread_local2.c
@@ -0,0 +1,18 @@
+#include <stdio.h>
+#include <pthread.h>
+
+_Thread_local int toto;
+_Thread_local int toto2 = 45;
+
+void* poulet(void * dummy) {
+ printf("%p %p\n", &toto, &toto2);
+ return NULL;
+}
+
+int main() {
+ pthread_t thr;
+ poulet(NULL);
+ pthread_create(&thr, NULL, poulet, NULL);
+ pthread_join(thr, NULL);
+ return 0;
+}