cregit-Linux how code gets into the kernel

Release 4.11 tools/include/linux/compiler-gcc.h

#ifndef _TOOLS_LINUX_COMPILER_H_
#error "Please don't include <linux/compiler-gcc.h> directly, include <linux/compiler.h> instead."
#endif

/*
 * Common definitions for all gcc versions go here.
 */

#define GCC_VERSION (__GNUC__ * 10000               \
                     + __GNUC_MINOR__ * 100     \
                     + __GNUC_PATCHLEVEL__)

#if GCC_VERSION >= 70000 && !defined(__CHECKER__)

# define __fallthrough __attribute__ ((fallthrough))
#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo30100.00%1100.00%
Total30100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.