Re: [PATCH] use 1ULL instead of 1UL in kernel/signal.c

Alan Cox (alan@lxorguk.ukuu.org.uk)
23 Oct 2002 14:48:31 +0100


On Wed, 2002-10-23 at 14:17, Matthew Wilcox wrote:
> +#if SIGRTMIN > 32
> +#define M(sig) (1ULL << (sig))
> +#else
> #define M(sig) (1UL << (sig))
> +#endif

Not >= ??

otherwise it looks very sensible

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/