mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* sysdeps/unix/sysv/linux/i386/sigaction.c: Make alias weak since it's overridden by libpthreads. * sysdeps/unix/sysv/linux/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
This commit is contained in:
@ -1,5 +1,13 @@
|
|||||||
2000-07-10 Andreas Jaeger <aj@suse.de>
|
2000-07-10 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/i386/sigaction.c: Make alias weak since
|
||||||
|
it's overridden by libpthreads.
|
||||||
|
* sysdeps/unix/sysv/linux/sigaction.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
|
||||||
|
|
||||||
* malloc/Makefile: Run tst-mtrace only with shared libs.
|
* malloc/Makefile: Run tst-mtrace only with shared libs.
|
||||||
|
|
||||||
* stdio-common/Makefile: Run unbputc and tst-printf tests only
|
* stdio-common/Makefile: Run unbputc and tst-printf tests only
|
||||||
|
@ -149,5 +149,5 @@ __libc_sigaction (sig, act, oact)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
strong_alias (__libc_sigaction, __sigaction)
|
weak_alias (__libc_sigaction, __sigaction)
|
||||||
weak_alias (__libc_sigaction, sigaction)
|
weak_alias (__libc_sigaction, sigaction)
|
||||||
|
@ -148,7 +148,7 @@ __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
strong_alias (__libc_sigaction, __sigaction)
|
weak_alias (__libc_sigaction, __sigaction)
|
||||||
weak_alias (__libc_sigaction, sigaction)
|
weak_alias (__libc_sigaction, sigaction)
|
||||||
|
|
||||||
/* NOTE: Please think twice before making any changes to the bits of
|
/* NOTE: Please think twice before making any changes to the bits of
|
||||||
|
@ -50,5 +50,5 @@ __libc_sigaction (sig, act, oact)
|
|||||||
CHECK_1opt (act), CHECK_1opt (oact), _NSIG / 8);
|
CHECK_1opt (act), CHECK_1opt (oact), _NSIG / 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
strong_alias (__libc_sigaction, __sigaction)
|
weak_alias (__libc_sigaction, __sigaction)
|
||||||
weak_alias (__libc_sigaction, sigaction)
|
weak_alias (__libc_sigaction, sigaction)
|
||||||
|
@ -133,5 +133,5 @@ __libc_sigaction (sig, act, oact)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
strong_alias (__libc_sigaction, __sigaction)
|
weak_alias (__libc_sigaction, __sigaction)
|
||||||
weak_alias (__libc_sigaction, sigaction)
|
weak_alias (__libc_sigaction, sigaction)
|
||||||
|
@ -135,7 +135,7 @@ __libc_sigaction (int sig, __const struct sigaction *act,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
strong_alias (__libc_sigaction, __sigaction);
|
weak_alias (__libc_sigaction, __sigaction);
|
||||||
weak_alias (__libc_sigaction, sigaction);
|
weak_alias (__libc_sigaction, sigaction);
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Miguel de Icaza (miguel@nuclecu.unam.mx) and
|
Contributed by Miguel de Icaza (miguel@nuclecu.unam.mx) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public License as
|
modify it under the terms of the GNU Library General Public License as
|
||||||
@ -64,7 +64,7 @@ __libc_sigaction (int sig, __const struct sigaction *act,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
strong_alias (__libc_sigaction, __sigaction);
|
weak_alias (__libc_sigaction, __sigaction);
|
||||||
weak_alias (__libc_sigaction, sigaction);
|
weak_alias (__libc_sigaction, sigaction);
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Reference in New Issue
Block a user