diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 11:12:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 11:12:11 +0000 |
commit | d1436edcb90d3987b50e483550c09a8e75ab0a88 (patch) | |
tree | b18ff11dd1ba842779553c0baf4a1836cc85618f /sysdeps/unix/sparc | |
parent | f7f7f8150a52fd01eeedf17fa241d9cc0cf36842 (diff) | |
download | glibc-d1436edcb90d3987b50e483550c09a8e75ab0a88.tar.gz glibc-d1436edcb90d3987b50e483550c09a8e75ab0a88.tar.xz glibc-d1436edcb90d3987b50e483550c09a8e75ab0a88.zip |
Update.
* include/unistd.h: Add libc_hidden_proto for __fork and __vfork. * sysdeps/generic/fork.c: Add libc_hidden_def for __fork. * sysdeps/mach/hurd/fork.c: Likewise. * sysdeps/unix/sysv/aix/fork.c: Likewise. * sysdeps/unix/fork.S: Add __GI___fork alias. * sysdeps/unix/arm/fork.S: Likewise. * sysdeps/unix/bsd/osf/alpha/fork.S: Likewise. * sysdeps/unix/i386/fork.S: Likewise. * sysdeps/unix/mips/fork.S: Likewise. * sysdeps/unix/sparc/fork.S: Likewise. * sysdeps/unix/sysv/linux/ia64/fork.S: Likewise. * sysdeps/unix/sysv/linux/sparc/fork.S: Likewise. * sysdeps/unix/sysv/linux/syscalls.list: Likewise. * sysdeps/generic/vfork.c: Add libc_hidden_def for __vfork. * sysdeps/unix/bsd/hp/m68k/vfork.S: Add __GI___vfork alias. * sysdeps/unix/bsd/i386/vfork.S: Likewise. * sysdeps/unix/bsd/sun/m68k/vfork.S: Likewise. * sysdeps/unix/bsd/ultrix4/mips/vfork.S: Likewise. * sysdeps/unix/bsd/vax/vfork.S: Likewise. * sysdeps/unix/sparc/vfork.S: Likewise. * sysdeps/unix/sysv/linux/arm/vfork.S: Likewise. * sysdeps/unix/sysv/linux/cris/vfork.S: Likewise. * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise. * sysdeps/unix/sysv/linux/ia64/vfork.S: Likewise. * sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise. * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise. * sysdeps/unix/sysv/linux/sparc/vfork.S: Likewise. * sysdeps/unix/sysv/linux/x86_64/vfork.S: Likewise.
Diffstat (limited to 'sysdeps/unix/sparc')
-rw-r--r-- | sysdeps/unix/sparc/fork.S | 3 | ||||
-rw-r--r-- | sysdeps/unix/sparc/vfork.S | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sparc/fork.S b/sysdeps/unix/sparc/fork.S index 8ed343b80d..735a9599b7 100644 --- a/sysdeps/unix/sparc/fork.S +++ b/sysdeps/unix/sparc/fork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 94, 95, 97, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 94, 95, 97, 99, 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 @@ -26,5 +26,6 @@ SYSCALL__ (fork, 0) sub %o1, 1, %o1 retl and %o0, %o1, %o0 +strong_alias (__fork, __GI___fork) weak_alias (__fork, fork) diff --git a/sysdeps/unix/sparc/vfork.S b/sysdeps/unix/sparc/vfork.S index 071ac728d9..0eb1080cf8 100644 --- a/sysdeps/unix/sparc/vfork.S +++ b/sysdeps/unix/sparc/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 94, 95, 97, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 94, 95, 97, 99, 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 @@ -30,5 +30,6 @@ SYSCALL__ (vfork, 0) sub %o1, 1, %o1 retl and %o0, %o1, %o0 +strong_alias (__vfork, __GI___vfork) weak_alias (__vfork, vfork) |