]> sourceware.org Git - glibc.git/commitdiff
hppa: signalfd.h: move to common sys/signalfd.h
authorMike Frysinger <vapier@gentoo.org>
Sat, 15 Aug 2015 02:14:16 +0000 (22:14 -0400)
committerMike Frysinger <vapier@gentoo.org>
Tue, 18 Aug 2015 06:37:15 +0000 (02:37 -0400)
Use the common sys/signalfd.h to avoid duplication and move the
arch-specific settings into bits/signalfd.h.

ChangeLog
sysdeps/unix/sysv/linux/hppa/bits/signalfd.h [moved from sysdeps/unix/sysv/linux/hppa/sys/signalfd.h with 55% similarity]

index 915cae846e97001abe823388b3d0353a4fda04c4..1212089138b52bea21bf924f8c69e0405df25b82 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
similarity index 55%
rename from sysdeps/unix/sysv/linux/hppa/sys/signalfd.h
rename to sysdeps/unix/sysv/linux/hppa/bits/signalfd.h
index 1a4a197c7292e368e916d34c41202f56cdcf2e90..abb2a23cd57feaa01283b183bf1d95712eab5c12 100644 (file)
    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 */
This page took 0.100422 seconds and 5 git commands to generate.