Skip to content

Commit

Permalink
hppa: signalfd.h: move to common sys/signalfd.h
Browse files Browse the repository at this point in the history
Use the common sys/signalfd.h to avoid duplication and move the
arch-specific settings into bits/signalfd.h.
  • Loading branch information
Mike Frysinger committed Aug 18, 2015
1 parent 605021b commit 55b14dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 39 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 */

0 comments on commit 55b14dd

Please sign in to comment.