diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 11:10:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 11:10:33 +0000 |
commit | c505de0a40ab51521571ad9da11fdd387b63ba3a (patch) | |
tree | 35c57500426b89b3cfc391ee8ce82105313276f8 /sysdeps/unix/sysv/linux | |
parent | 7e587d1822a6f2a0020275c0e855dd9984a6977d (diff) | |
download | glibc-c505de0a40ab51521571ad9da11fdd387b63ba3a.tar glibc-c505de0a40ab51521571ad9da11fdd387b63ba3a.tar.gz glibc-c505de0a40ab51521571ad9da11fdd387b63ba3a.tar.bz2 glibc-c505de0a40ab51521571ad9da11fdd387b63ba3a.zip |
Add __GI___vfork alias.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/vfork.S | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/cris/vfork.S | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/m68k/vfork.S | 3 |
3 files changed, 7 insertions, 4 deletions
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) |