Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.32-rc8 17 lines 440 B view raw
1#ifndef _PERF_TYPES_H 2#define _PERF_TYPES_H 3 4/* 5 * We define u64 as unsigned long long for every architecture 6 * so that we can print it with %Lx without getting warnings. 7 */ 8typedef unsigned long long u64; 9typedef signed long long s64; 10typedef unsigned int u32; 11typedef signed int s32; 12typedef unsigned short u16; 13typedef signed short s16; 14typedef unsigned char u8; 15typedef signed char s8; 16 17#endif /* _PERF_TYPES_H */