__attribute__不是C语言本身的关键字,而是属于编译器扩展的C语言的功能,C Extensions (Using the GNU Compiler Collection (GCC))中可以找到关于attribute的几个章节,Function Attributes【函数属性】、Variable Attributes【变量属性】、Type Attributes【类型属性】、Label Attributes【标签属性】、Enumerator Attributes【枚举属性】、Statement Attributes【语句属性】、Attribute Syntax【属性语法】;
?
__attribute__((属性列表)) ,属性列表的几种情况:
注1:属性列表外有两对小括号;
注2:属性列表意味着可以写多个属性,属性中间用逗号分开,具体的属性使用说明从链接里找。
__attribute__((section(x)))
__attribute__((used))
__attribute__((used,section(x)))
参考这个常见函数属性链接:Common Function Attributes (Using the GNU Compiler Collection (GCC));