Linux Audio

Check our new training course

Yocto distribution development and maintenance

Need a Yocto distribution for your embedded project?
Loading...
Note: File does not exist in v4.6.
 1#ifndef __PERF_TYPES_H
 2#define __PERF_TYPES_H
 3
 4#include <stdint.h>
 5
 6/*
 7 * We define u64 as uint64_t for every architecture
 8 * so that we can print it with "%"PRIx64 without getting warnings.
 9 */
10typedef uint64_t	   u64;
11typedef int64_t		   s64;
12typedef unsigned int	   u32;
13typedef signed int	   s32;
14typedef unsigned short	   u16;
15typedef signed short	   s16;
16typedef unsigned char	   u8;
17typedef signed char	   s8;
18
19#endif /* __PERF_TYPES_H */