hppa: signalfd.h: move to common sys/signalfd.h

Use the common sys/signalfd.h to avoid duplication and move the
arch-specific settings into bits/signalfd.h.
This commit is contained in:
Mike Frysinger 2015-08-14 22:14:16 -04:00
parent 605021b6b9
commit 55b14dda43
2 changed files with 8 additions and 39 deletions

View File

@ -1,3 +1,8 @@
2015-08-18 Mike Frysinger <vapier@gentoo.org>
* sysdeps/unix/sysv/linux/hppa/bits/signalfd.h: New file.
* sysdeps/unix/sysv/linux/hppa/sys/signalfd.h: Delete.
2015-08-18 Mike Frysinger <vapier@gentoo.org>
* sysdeps/unix/sysv/linux/hppa/bits/inotify.h: New file.

View File

@ -12,37 +12,12 @@
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, see
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
#ifndef _SYS_SIGNALFD_H
#define _SYS_SIGNALFD_H 1
#define __need_sigset_t
#include <signal.h>
#include <stdint.h>
struct signalfd_siginfo
{
uint32_t ssi_signo;
int32_t ssi_errno;
int32_t ssi_code;
uint32_t ssi_pid;
uint32_t ssi_uid;
int32_t ssi_fd;
uint32_t ssi_tid;
uint32_t ssi_band;
uint32_t ssi_overrun;
uint32_t ssi_trapno;
int32_t ssi_status;
int32_t ssi_int;
uint64_t ssi_ptr;
uint64_t ssi_utime;
uint64_t ssi_stime;
uint64_t ssi_addr;
uint8_t __pad[48];
};
# error "Never use <bits/signalfd.h> directly; include <sys/signalfd.h> instead."
#endif
/* Flags for signalfd. */
enum
@ -52,14 +27,3 @@ enum
SFD_NONBLOCK = 00200004 /* HPUX has separate NDELAY & NONBLOCK */
#define SFD_NONBLOCK SFD_NONBLOCK
};
__BEGIN_DECLS
/* Request notification for delivery of signals in MASK to be
performed using descriptor FD.*/
extern int signalfd (int __fd, const sigset_t *__mask, int __flags)
__THROW __nonnull ((2));
__END_DECLS
#endif /* sys/signalfd.h */