| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | sigset_t32 broken? |
| From: | Andrew Clausen <clausen@melbourne.sgi.com> |
| Date: | Thu, 23 Jan 2003 18:17:53 +1100 |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mutt/1.4i |
Hi all,
Cut&paste from linux/asm/mips64/signal.h:
#define _NSIG 128
#define _NSIG_BPW 64
#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
typedef struct {
long sig[_NSIG_WORDS];
} sigset_t;
#define _NSIG32 128
#define _NSIG_BPW32 32
#define _NSIG_WORDS32 (_NSIG32 / _NSIG_BPW32)
typedef struct {
long sig[_NSIG_WORDS32];
} sigset_t32;
Shouldn't those two long's be replaced with u64 and u32
respectively? Is the second struct really meant to be twice the
size the first?
Cheers,
Andrew
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: debian's mips userland on mips64, Ralf Baechle |
|---|---|
| Next by Date: | Re: sigset_t32 broken?, Vivien Chappelier |
| Previous by Thread: | debian's mips userland on mips64, Andrew Clausen |
| Next by Thread: | Re: sigset_t32 broken?, Vivien Chappelier |
| Indexes: | [Date] [Thread] [Top] [All Lists] |