Commit e5f64bc8 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] remove __ARCH_SI_BAND_T

All architectures now make this `long', so we can remove the arch override.
parent c1c0d518
...@@ -26,10 +26,6 @@ typedef union sigval { ...@@ -26,10 +26,6 @@ typedef union sigval {
#define __ARCH_SI_UID_T uid_t #define __ARCH_SI_UID_T uid_t
#endif #endif
#ifndef __ARCH_SI_BAND_T
#define __ARCH_SI_BAND_T long int
#endif
#ifndef HAVE_ARCH_SIGINFO_T #ifndef HAVE_ARCH_SIGINFO_T
typedef struct siginfo { typedef struct siginfo {
...@@ -81,7 +77,7 @@ typedef struct siginfo { ...@@ -81,7 +77,7 @@ typedef struct siginfo {
/* SIGPOLL */ /* SIGPOLL */
struct { struct {
__ARCH_SI_BAND_T _band; /* POLL_IN, POLL_OUT, POLL_MSG */ long _band; /* POLL_IN, POLL_OUT, POLL_MSG */
int _fd; int _fd;
} _sigpoll; } _sigpoll;
} _sifields; } _sifields;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment