summaryrefslogtreecommitdiff
path: root/nptl/tst-tls3.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-03-23 11:17:28 +0000
committerRoland McGrath <roland@gnu.org>2003-03-23 11:17:28 +0000
commit3045a1fe8969d56d1c2b1dbbe75a0a821b27c356 (patch)
tree8ec447bbab7e822641dfc61deed2090d2a3543fd /nptl/tst-tls3.c
parent85047fe3b9a57c0de50692791b4c6f6301a49d1d (diff)
* Makeconfig (+includes): Don't use $(last-includes).
Diffstat (limited to 'nptl/tst-tls3.c')
-rw-r--r--nptl/tst-tls3.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/nptl/tst-tls3.c b/nptl/tst-tls3.c
index a34862e58c..4e7ca8e231 100644
--- a/nptl/tst-tls3.c
+++ b/nptl/tst-tls3.c
@@ -72,6 +72,13 @@ int nsigs;
int
do_test (void)
{
+#if !HAVE___THREAD
+
+ puts ("No __thread support in compiler, test skipped.");
+
+ return 0;
+#else
+
if (pthread_barrier_init (&b, NULL, N + 1) != 0)
{
puts ("barrier_init failed");
@@ -172,6 +179,7 @@ do_test (void)
}
return 0;
+#endif
}