Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
compiler.h
Go to the documentation of this file.
1 #ifndef _PERF_LINUX_COMPILER_H_
2 #define _PERF_LINUX_COMPILER_H_
3 
4 #ifndef __always_inline
5 #define __always_inline inline
6 #endif
7 #define __user
8 #ifndef __attribute_const__
9 #define __attribute_const__
10 #endif
11 
12 #ifndef __maybe_unused
13 #define __maybe_unused __attribute__((unused))
14 #endif
15 #define __packed __attribute__((__packed__))
16 
17 #ifndef __force
18 #define __force
19 #endif
20 
21 #endif