about summary refs log tree commit diff
path: root/linuxthreads/sysdeps/unix/sysv/linux/alpha
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-02-07 06:46:21 +0000
committerUlrich Drepper <drepper@redhat.com>2003-02-07 06:46:21 +0000
commit65c689907900378bc3daf394a40b6a046595caab (patch)
treeab2f37fdde74caf77e4c30e3fcec407214d89fb0 /linuxthreads/sysdeps/unix/sysv/linux/alpha
parentce96c93de5d57d917d300c4c80ed8ffc9141a874 (diff)
downloadglibc-65c689907900378bc3daf394a40b6a046595caab.tar.gz
glibc-65c689907900378bc3daf394a40b6a046595caab.tar.xz
glibc-65c689907900378bc3daf394a40b6a046595caab.zip
Update.
2003-02-07  Jakub Jelinek  <jakub@redhat.com>

	* tst-popen2.c: New test.
	* Makefile (tests): Add tst-popen2.
	* sysdeps/unix/sysv/linux/alpha/vfork.S (__vfork): Branch to __fork
	whenever libpthread.so is loaded.
	* sysdeps/unix/sysv/linux/i386/vfork.S (__vfork): Likewise.
	* sysdeps/unix/sysv/linux/ia64/vfork.S (__vfork): Likewise.
	* sysdeps/unix/sysv/linux/s390/s390-64/vfork.S (__vfork): Likewise.
	* sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork): Likewise.
	* sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S (__vfork): Likewise.
	* sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S (__vfork): Likewise.
	* sysdeps/unix/sysv/linux/x86_64/vfork.S (__vfork): Likewise.
Diffstat (limited to 'linuxthreads/sysdeps/unix/sysv/linux/alpha')
-rw-r--r--linuxthreads/sysdeps/unix/sysv/linux/alpha/vfork.S4
1 files changed, 3 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/alpha/vfork.S b/linuxthreads/sysdeps/unix/sysv/linux/alpha/vfork.S
index e7507245e7..9002a3b36b 100644
--- a/linuxthreads/sysdeps/unix/sysv/linux/alpha/vfork.S
+++ b/linuxthreads/sysdeps/unix/sysv/linux/alpha/vfork.S
@@ -27,10 +27,12 @@ __LABEL(__vfork)
 	.prologue 1
 	PSEUDO_PROF
 
-	SINGLE_THREAD_P(t0)
 #ifdef SHARED
+	ldq	t0, __libc_pthread_functions(gp) !gprel
 	bne	t0, HIDDEN_JUMPTARGET (__fork) !samegp
 #else
+	.weak	__pthread_fork
+	ldq	t0, __pthread_fork(gp) !literal
 	bne	t0, $do_fork
 #endif