2006-10-02  Jakub Jelinek  <jakub@redhat.com>
	[BZ #3291]
	* sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
	errno.h, signal.h, unistd.h and sysdep-cancel.h.
	(__sigprocmask): Define.
This commit is contained in:
Ulrich Drepper 2006-10-02 18:41:30 +00:00
parent 768027a456
commit 97e57dee9a
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2006-10-02 Jakub Jelinek <jakub@redhat.com>
[BZ #3291]
* sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
errno.h, signal.h, unistd.h and sysdep-cancel.h.
(__sigprocmask): Define.
2006-10-02 Ulrich Drepper <drepper@redhat.com> 2006-10-02 Ulrich Drepper <drepper@redhat.com>
* elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is

View file

@ -1 +1,9 @@
#include <errno.h>
#include <signal.h>
#include <unistd.h>
#include <sysdep-cancel.h>
#define __sigprocmask(how, set, oset) \
INLINE_SYSCALL (rt_sigprocmask, 4, how, set, oset, _NSIG / 8)
#include <sysdeps/posix/pause.c> #include <sysdeps/posix/pause.c>