Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 30 Jan 1999 17:38:29 +0000 (17:38 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 30 Jan 1999 17:38:29 +0000 (17:38 +0000)
1999-01-31  Philip Blundell  <philb@gnu.org>

* sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: If the kernel
doesn't have vfork, resort to using fork.
* sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Likewise.

ChangeLog
sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S
sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S

index 2a9faed..76ebd99 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-01-31  Philip Blundell  <philb@gnu.org>
+
+       * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: If the kernel
+       doesn't have vfork, resort to using fork.
+       * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Likewise.
+
 1999-01-30  Ulrich Drepper  <drepper@cygnus.com>
 
        * sysdeps/sparc/sparc32/__longjmp.S: Include bits/setjmp.h not
index 898230c..feed06f 100644 (file)
 
 #include <sysdep.h>
 
+#ifdef __NR_vfork
 PSEUDO (__vfork, vfork, 0)
+#else
+PSEUDO (__vfork, fork, 0)
+#endif
        sub     %o1, 1, %o1
        retl
         and    %o0, %o1, %o0
index 898230c..feed06f 100644 (file)
 
 #include <sysdep.h>
 
+#ifdef __NR_vfork
 PSEUDO (__vfork, vfork, 0)
+#else
+PSEUDO (__vfork, fork, 0)
+#endif
        sub     %o1, 1, %o1
        retl
         and    %o0, %o1, %o0