I want to have a fixed size integer of 64 bits in linux kernel.
My questions:
- If I use
unsigned long
, then it may be 64-bit on one architecture and 32-bit on another. Right? - What would be the data type the for fixed 64-bit integer?
I am specifically referring to linux kernel