]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
configure.host (*-linux*): Don't set slow_pthread_self if primary installed libpthrea...
authorJakub Jelinek <jakub@redhat.com>
Tue, 15 Apr 2003 09:52:42 +0000 (11:52 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 15 Apr 2003 09:52:42 +0000 (11:52 +0200)
* configure.host (*-linux*): Don't set slow_pthread_self if primary
installed libpthread is either linuxthreads with floating stacks or
NPTL.

From-SVN: r65628

libjava/ChangeLog
libjava/configure.host

index 8d9944d4c85f38cf0d0bdf62bbc1219f1393f181..3fe91a3c20f18c77acff0da2b4eae78cbfac666f 100644 (file)
@@ -1,3 +1,9 @@
+2003-04-15  Jakub Jelinek  <jakub@redhat.com>
+
+       * configure.host (*-linux*): Don't set slow_pthread_self if primary
+       installed libpthread is either linuxthreads with floating stacks or
+       NPTL.
+
 2003-04-14  Tom Tromey  <tromey@redhat.com>
 
        * resolve.cc (_Jv_PrepareClass): Round up class size to multiple
index 2fca3e1cc1d66b8c078f22c8e70184952d262417..f1c65bcc50e5d1e0feb15e7adde1afcc4c2804d6 100644 (file)
@@ -164,6 +164,55 @@ case "${host}" in
   x86_64*-linux* | \
   sh-linux* | sh[34]*-linux*)
        can_unwind_signal=yes
+       if test x$slow_pthread_self = xyes \
+          && test x$cross_compiling != xyes; then
+         cat > conftest.c <<EOF
+#define _GNU_SOURCE 1
+#include <pthread.h>
+#include <stdlib.h>
+#include <sys/resource.h>
+#include <limits.h>
+
+void *
+tf (void *arg __attribute__ ((unused)))
+{
+  pthread_attr_t a;
+  size_t s;
+
+  if (pthread_getattr_np (pthread_self (), &a)
+      || pthread_attr_getstacksize (&a, &s)
+      || s > 2 * PTHREAD_STACK_MIN)
+    exit (1);
+  exit (0);
+}
+
+int
+main (int argc, char **argv)
+{
+  pthread_t p;
+  void *ret;
+  struct rlimit r;
+
+  if (argc == 2)
+    {
+      r.rlim_cur = 2 * PTHREAD_STACK_MIN;
+      r.rlim_max = 2 * PTHREAD_STACK_MIN;
+      if (setrlimit (RLIMIT_STACK, &r))
+       exit (1);
+      execl (argv[1], argv[0], NULL);
+      exit (1);
+    }
+
+  if (pthread_create (&p, NULL, tf, NULL)
+      || pthread_join (p, &ret))
+    exit (1);
+  exit (1);
+}
+EOF
+         $CC -o conftest conftest.c -lpthread > /dev/null 2>&1 && \
+         ./conftest ./conftest && slow_pthread_self=
+         rm -f conftest conftest.c
+       fi
        ;;
   *-*-darwin*)
        enable_hash_synchronization_default=no