about summary refs log tree commit diff
path: root/nptl/sysdeps/pthread/createthread.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-01-21 01:47:11 +0000
committerUlrich Drepper <drepper@redhat.com>2004-01-21 01:47:11 +0000
commit5673ccc1756d56f2b2d47f1d2ce9f074095b5c1f (patch)
tree63c26bdd8ed8c8ca349e117cef22af824fe2be41 /nptl/sysdeps/pthread/createthread.c
parentf3484f2791a24f1aa5127addd51042520a9aecae (diff)
downloadglibc-5673ccc1756d56f2b2d47f1d2ce9f074095b5c1f.tar.gz
glibc-5673ccc1756d56f2b2d47f1d2ce9f074095b5c1f.tar.xz
glibc-5673ccc1756d56f2b2d47f1d2ce9f074095b5c1f.zip
Update.
2004-01-20  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/pthread/createthread.c (create_thread): Don't add
	CLONE_DETACHED bit if it is not necessary.
Diffstat (limited to 'nptl/sysdeps/pthread/createthread.c')
-rw-r--r--nptl/sysdeps/pthread/createthread.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/nptl/sysdeps/pthread/createthread.c b/nptl/sysdeps/pthread/createthread.c
index 71ce02db0e..c4695fced3 100644
--- a/nptl/sysdeps/pthread/createthread.c
+++ b/nptl/sysdeps/pthread/createthread.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
 
@@ -174,7 +174,10 @@ create_thread (struct pthread *pd, const struct pthread_attr *attr,
      is sent.  */
   int clone_flags = (CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGNAL
 		     | CLONE_SETTLS | CLONE_PARENT_SETTID
-		     | CLONE_CHILD_CLEARTID | CLONE_DETACHED | CLONE_SYSVSEM
+		     | CLONE_CHILD_CLEARTID | CLONE_SYSVSEM
+#if __ASSUME_NO_CLONE_DETACHED == 0
+		     | CLONE_DETACHED
+#endif
 		     | 0);
 
   /* If the newly created threads has to be started stopped since we