mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
e5e45b5337
2002-12-09 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/syscalls.list: Add __libc_creat and __libc_select aliases. * sysdeps/unix/sysv/linux/sigwaitinfo.c: Define __libc_sigwaitinfo alias. * sysdeps/unix/sysv/linux/sigwait.c: Define __libc_sigwait alias. * sysdeps/unix/sysv/linux/sigsuspend.c: Define __libc_sigsuspend alias. * sysdeps/unix/sysv/linux/poll.c: Define __libc_poll alias. * sysdeps/unix/syscalls.list: Define __libc_select alias. * sysdeps/posix/waitid.c: Define __libc_waitid alias. * sysdeps/posix/sigpause.c: Define __libc_sigpause and __libc___xpg_sigpause aliases. * sysdeps/generic/pselect.c: Define __libc_pselect alias. * misc/error.c: Remove use of USE_IN_LIBIO.
50 lines
1.7 KiB
C
50 lines
1.7 KiB
C
/* Copyright (C) 1997, 1998, 2000, 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
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#define __need_NULL
|
|
#include <stddef.h>
|
|
|
|
#include <sysdep.h>
|
|
#include <sys/syscall.h>
|
|
#include <bp-checks.h>
|
|
|
|
#ifdef __NR_rt_sigtimedwait
|
|
extern int __syscall_rt_sigtimedwait (const sigset_t *__unbounded, siginfo_t *__unbounded,
|
|
const struct timespec *__unbounded, size_t);
|
|
|
|
|
|
/* Return any pending signal or wait for one for the given time. */
|
|
int
|
|
__sigwaitinfo (set, info)
|
|
const sigset_t *set;
|
|
siginfo_t *info;
|
|
{
|
|
/* XXX The size argument hopefully will have to be changed to the
|
|
real size of the user-level sigset_t. */
|
|
return INLINE_SYSCALL (rt_sigtimedwait, 4, CHECK_SIGSET (set),
|
|
CHECK_1 (info), NULL, _NSIG / 8);
|
|
}
|
|
libc_hidden_def (__sigwaitinfo)
|
|
weak_alias (__sigwaitinfo, sigwaitinfo)
|
|
#else
|
|
# include <sysdeps/generic/sigwaitinfo.c>
|
|
#endif
|
|
strong_alias (__sigwaitinfo, __libc_sigwaitinfo)
|