aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-31 11:10:33 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-31 11:10:33 +0000
commitc505de0a40ab51521571ad9da11fdd387b63ba3a (patch)
tree35c57500426b89b3cfc391ee8ce82105313276f8 /sysdeps
parent7e587d1822a6f2a0020275c0e855dd9984a6977d (diff)
downloadglibc-c505de0a40ab51521571ad9da11fdd387b63ba3a.tar
glibc-c505de0a40ab51521571ad9da11fdd387b63ba3a.tar.gz
glibc-c505de0a40ab51521571ad9da11fdd387b63ba3a.tar.bz2
glibc-c505de0a40ab51521571ad9da11fdd387b63ba3a.zip
Add __GI___vfork alias.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/bsd/hp/m68k/vfork.S3
-rw-r--r--sysdeps/unix/bsd/sun/m68k/vfork.S3
-rw-r--r--sysdeps/unix/bsd/ultrix4/mips/vfork.S3
-rw-r--r--sysdeps/unix/bsd/vax/vfork.S3
-rw-r--r--sysdeps/unix/sysv/linux/arm/vfork.S5
-rw-r--r--sysdeps/unix/sysv/linux/cris/vfork.S3
-rw-r--r--sysdeps/unix/sysv/linux/m68k/vfork.S3
7 files changed, 15 insertions, 8 deletions
diff --git a/sysdeps/unix/bsd/hp/m68k/vfork.S b/sysdeps/unix/bsd/hp/m68k/vfork.S
index 4bb5939dbe..0e15a5089d 100644
--- a/sysdeps/unix/bsd/hp/m68k/vfork.S
+++ b/sysdeps/unix/bsd/hp/m68k/vfork.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1994, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1994, 1995, 1997, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -51,5 +51,6 @@ error:
movel d0, _errno
moveq #-1, d0
jmp a0@
+strong_alias (__vfork, __GI___vfork)
weak_alias (__vfork, vfork)
diff --git a/sysdeps/unix/bsd/sun/m68k/vfork.S b/sysdeps/unix/bsd/sun/m68k/vfork.S
index fe0309e3aa..006688936b 100644
--- a/sysdeps/unix/bsd/sun/m68k/vfork.S
+++ b/sysdeps/unix/bsd/sun/m68k/vfork.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 92, 93, 94, 95, 97 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 92, 93, 94, 95, 97, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -51,5 +51,6 @@ error:
movel d0, _errno
moveq #-1, d0
jmp a0@
+strong_alias (__vfork, __GI___vfork)
weak_alias (__vfork, vfork)
diff --git a/sysdeps/unix/bsd/ultrix4/mips/vfork.S b/sysdeps/unix/bsd/ultrix4/mips/vfork.S
index 9541eafbae..80e7328c71 100644
--- a/sysdeps/unix/bsd/ultrix4/mips/vfork.S
+++ b/sysdeps/unix/bsd/ultrix4/mips/vfork.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1995, 1997, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Brendan Kehoe (brendan@zen.org).
@@ -31,5 +31,6 @@ parent:
ret
nop
.end __vfork
+strong_alias (__vfork, __GI___vfork)
weak_alias (__vfork, vfork)
diff --git a/sysdeps/unix/bsd/vax/vfork.S b/sysdeps/unix/bsd/vax/vfork.S
index 8098b0eca6..16f0e98bb2 100644
--- a/sysdeps/unix/bsd/vax/vfork.S
+++ b/sysdeps/unix/bsd/vax/vfork.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1995, 1997, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -52,5 +52,6 @@ error:
movl r0, _errno
mnegl $1, r0
jmp (r2)
+strong_alias (__vfork, __GI___vfork)
weak_alias (__vfork, vfork)
diff --git a/sysdeps/unix/sysv/linux/arm/vfork.S b/sysdeps/unix/sysv/linux/arm/vfork.S
index b10117e9f8..3364c686d6 100644
--- a/sysdeps/unix/sysv/linux/arm/vfork.S
+++ b/sysdeps/unix/sysv/linux/arm/vfork.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Philip Blundell <philb@gnu.org>.
@@ -44,7 +44,8 @@ ENTRY (__vfork)
cmn a1, #4096
RETINSTR(movcc, pc, lr)
b PLTJMP(C_SYMBOL_NAME(__syscall_error))
-
+
PSEUDO_END (__vfork)
+strong_alias (__vfork, __GI___vfork)
weak_alias (__vfork, vfork)
diff --git a/sysdeps/unix/sysv/linux/cris/vfork.S b/sysdeps/unix/sysv/linux/cris/vfork.S
index 39985a08a5..f471efe0a5 100644
--- a/sysdeps/unix/sysv/linux/cris/vfork.S
+++ b/sysdeps/unix/sysv/linux/cris/vfork.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999, 2001 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -22,5 +22,6 @@ PSEUDO (__vfork, vfork, 0)
Ret
nop
PSEUDO_END (__vfork)
+strong_alias (__vfork, __GI___vfork)
weak_alias (__vfork, vfork)
diff --git a/sysdeps/unix/sysv/linux/m68k/vfork.S b/sysdeps/unix/sysv/linux/m68k/vfork.S
index b77a7bd15f..8968caece7 100644
--- a/sysdeps/unix/sysv/linux/m68k/vfork.S
+++ b/sysdeps/unix/sysv/linux/m68k/vfork.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Andreas Schwab <schwab@gnu.org>.
@@ -62,5 +62,6 @@ ENTRY (__vfork)
rts
PSEUDO_END (__vfork)
+strong_alias (__vfork, __GI___vfork)
weak_alias (__vfork, vfork)