* Makerules: USE_TLS support is now default.
authorUlrich Drepper <drepper@redhat.com>
Fri, 27 Oct 2006 23:26:20 +0000 (23:26 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 27 Oct 2006 23:26:20 +0000 (23:26 +0000)
* tls.make.c: Likewise.

ChangeLog
Makerules
elf/tst-thrlock.c
tls.make.c

index 2f32dfd..554d877 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2006-10-27  Ulrich Drepper  <drepper@redhat.com>
 
-       * tls.make.c: USE_TLS support is now default.
+       * Makerules: USE_TLS support is now default.
+       * tls.make.c: Likewise.
        * csu/Versions: Likewise.
        * csu/libc-start.c: Likewise.
        * csu/libc-tls.c: Likewise.
index b0be86b..200f8d7 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -1233,10 +1233,7 @@ endif
 
 ifeq ($(firstword $(sysd-sorted-done) f)$(firstword $(generating) f),tf)
 -include $(common-objpfx)tls.make
-config-tls := notls
-ifeq ($(use-tls),yes)
 config-tls := tls
-endif
 ifeq ($(use-thread),yes)
 config-tls := thread
 endif
index 71f1fbb..fe72eba 100644 (file)
@@ -27,8 +27,9 @@ tf (void *arg)
   return NULL;
 }
 
-int
-main (void)
+
+static int
+do_test (void)
 {
 #define N 10
   pthread_t th[N];
@@ -53,3 +54,6 @@ main (void)
     }
   return 0;
 }
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"
index d19e2e1..6bcd247 100644 (file)
@@ -2,8 +2,6 @@
 
 #include <tls.h>
 
-@@@ use-tls = yes @@@
-
 #if USE___THREAD
 @@@ use-thread = yes @@@
 #else