Hi,
On Wed, 23 Feb 2000 09:35:11 +0100, Jakub Jelinek <jakub@redhat.com>
said:
> It should be doable for sparc64, I guess ia64 as well (but as I don't know
> if some ia64 application already uses si_band so I'm not enclosing a patch
> for it,
si_fd is available in the 2.2 kernel ABI, so if you want to move si_band
I'd prefer to avoid relocating si_fd at the same time.
> /* SIGPOLL */
> struct {
> - int _band; /* POLL_IN, POLL_OUT, POLL_MSG */
> + long _band; /* POLL_IN, POLL_OUT, POLL_MSG */
> int _fd;
> } _sigpoll;
> } _sifields;
What about
{
int _padding; /* Old location of int _band */
int _fd;
long _band; /* POLL_IN, POLL_OUT, POLL_MSG */
};
as a solution?
--Stephen
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Tue Feb 29 2000 - 21:00:09 EST