+2003-03-23 Roland McGrath <roland@redhat.com>
+
+ * Makeconfig (+includes): Don't use $(last-includes).
+
2003-03-22 Alexandre Oliva <aoliva@redhat.com>
* sysdeps/unix/sysv/linux/configure.in: Update mips64 patterns.
+includes = -I$(..)include -I. \
$(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
$(libio-include) $(includes) \
- $(+sysdep-includes) $(last-includes) $(sysincludes)
+ $(+sysdep-includes) $(sysincludes)
# Since libio has several internal header files, we use a -I instead
# of many little headers in the include directory.
2003-03-23 Roland McGrath <roland@redhat.com>
+ * tst-tls3.c (do_test) [! HAVE___THREAD]: Don't test anything.
+ * tst-tls3mod.c: Likewise.
+ * tst-tls1.c: Likewise.
+ * tst-tls2.c: Likewise.
+
* tst-mutex5.c (do_test): Unlock before destroy, otherwise we invoke
undefined behavior.
#include <stdlib.h>
+#if HAVE___THREAD
struct test_s
{
int a;
return NULL;
}
+#endif
int
do_test (void)
{
+#if !HAVE___THREAD
+
+ puts ("No __thread support in compiler, test skipped.");
+
+ return 0;
+#else
+
if (s.a != INIT_A || s.b != INIT_B)
{
puts ("initial value of s in main thread wrong");
}
return 0;
+#endif
}
#include <stdlib.h>
#include <unistd.h>
+#if HAVE___THREAD
#define N 10
static pthread_t th[N];
return NULL;
}
-
+#endif
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");
}
return 0;
+#endif
}
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");
}
return 0;
+#endif
}
#include <unistd.h>
+#if HAVE___THREAD
+
extern pthread_barrier_t b;
#define TOTAL_SIGS 1000
return NULL;
}
+
+#endif