Re: [PATCH 1/4] LOG2: Implement a general integer log2 facility in the kernel [try #4]

From: David Howells
Date: Tue Oct 10 2006 - 08:24:28 EST



Jan Engelhardt <jengelh@xxxxxxxxxxxxxxx> wrote:

> Ouch ouch ouch. It should better be
>
> typedef uint32_t __u32;


Actually, if you want to guarantee the size of an integer variable with gcc,
you can do, for example, this:

typedef int __attribute__((mode(SI))) siint;

which creates a 32-bit signed integer type called "siint".

The "mode" attribute is parameterised with one of the following values to
indicate the specific size of integer required:

QI 8-bit
HI 16-bit
SI 32-bit
DI 64-bit
TI 128-bit

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