All of lore.kernel.org
 help / color / mirror / Atom feed
* sigset_t32 broken?
@ 2003-01-23  7:17 Andrew Clausen
  2003-01-23  9:59 ` Vivien Chappelier
  0 siblings, 1 reply; 6+ messages in thread
From: Andrew Clausen @ 2003-01-23  7:17 UTC (permalink / raw)
  To: linux-mips

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-01-27 22:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-23  7:17 sigset_t32 broken? Andrew Clausen
2003-01-23  9:59 ` Vivien Chappelier
2003-01-24  1:48   ` Ralf Baechle
2003-01-27  0:44     ` Vivien Chappelier
2003-01-27  9:19       ` Geert Uytterhoeven
2003-01-27 22:30         ` Juan Quintela

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.