Subversion Repositories Kolibri OS

Rev

Rev 1765 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1765 Rev 1970
Line 19... Line 19...
19
#ifdef CONFIG_GCOV_KERNEL
19
#ifdef CONFIG_GCOV_KERNEL
20
# if __GNUC_MINOR__ < 4
20
# if __GNUC_MINOR__ < 4
21
#   error "GCOV profiling support for gcc versions below 3.4 not included"
21
#   error "GCOV profiling support for gcc versions below 3.4 not included"
22
# endif /* __GNUC_MINOR__ */
22
# endif /* __GNUC_MINOR__ */
23
#endif /* CONFIG_GCOV_KERNEL */
23
#endif /* CONFIG_GCOV_KERNEL */
24
 
-
 
25
/*
-
 
26
 * A trick to suppress uninitialized variable warning without generating any
-
 
27
 * code
-
 
28
 */
-
 
29
#define uninitialized_var(x) x = x
-
 
30
 
-
 
31
#define __always_inline         inline __attribute__((always_inline))
-