2014-01-09 21:00:52 +07:00
|
|
|
#ifndef _TOOLS_LINUX_COMPILER_H_
|
|
|
|
#define _TOOLS_LINUX_COMPILER_H_
|
2009-10-17 22:12:33 +07:00
|
|
|
|
|
|
|
#ifndef __always_inline
|
2013-10-07 16:26:18 +07:00
|
|
|
# define __always_inline inline __attribute__((always_inline))
|
2009-10-17 22:12:33 +07:00
|
|
|
#endif
|
2013-10-07 16:26:18 +07:00
|
|
|
|
2009-10-17 22:12:33 +07:00
|
|
|
#define __user
|
2013-10-07 16:26:18 +07:00
|
|
|
|
2011-08-18 18:37:21 +07:00
|
|
|
#ifndef __attribute_const__
|
2013-10-07 16:26:18 +07:00
|
|
|
# define __attribute_const__
|
2011-08-18 18:37:21 +07:00
|
|
|
#endif
|
2009-10-17 22:12:33 +07:00
|
|
|
|
2012-09-11 05:15:03 +07:00
|
|
|
#ifndef __maybe_unused
|
2013-10-07 16:26:18 +07:00
|
|
|
# define __maybe_unused __attribute__((unused))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __packed
|
|
|
|
# define __packed __attribute__((__packed__))
|
2012-09-11 05:15:03 +07:00
|
|
|
#endif
|
2010-03-26 05:58:59 +07:00
|
|
|
|
2012-09-11 05:14:59 +07:00
|
|
|
#ifndef __force
|
2013-10-07 16:26:18 +07:00
|
|
|
# define __force
|
2012-09-11 05:14:59 +07:00
|
|
|
#endif
|
|
|
|
|
2013-10-01 18:26:13 +07:00
|
|
|
#ifndef __weak
|
|
|
|
# define __weak __attribute__((weak))
|
|
|
|
#endif
|
|
|
|
|
2014-01-09 21:00:53 +07:00
|
|
|
#ifndef likely
|
|
|
|
# define likely(x) __builtin_expect(!!(x), 1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef unlikely
|
|
|
|
# define unlikely(x) __builtin_expect(!!(x), 0)
|
|
|
|
#endif
|
|
|
|
|
2014-01-09 21:00:52 +07:00
|
|
|
#endif /* _TOOLS_LINUX_COMPILER_H */
|