perf session: create_kernel_maps should use ->host_machine
[deliverable/linux.git] / tools / perf / util / types.h
CommitLineData
8b40f521
JK
1#ifndef __PERF_TYPES_H
2#define __PERF_TYPES_H
9cffa8d5
PM
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
8b40f521 17#endif /* __PERF_TYPES_H */
This page took 0.068723 seconds and 5 git commands to generate.