1、__restrict
用于限定和约束指针,并表明指针是访问一个数据对象的唯一且初始的方式.即它告诉编译器,所有修改该指针所指向内存中内容的操作都必须通过该指针来修改,而不能通过其它途径(其它变量或指针)来修改。
2、__attribute__
__attribute__可以设置函数属性、变量属性和类型属性,也可以用来设置结构体和unio的属性
语法格式为:__attribute__ ((attribute-list))
attribute-list有六种,即:aligned, packed, transparent_union, unused, deprecated和may_alias
例如:typedef int int32_t __attribute__ ((aligned (8)));
强制编译器确保变量类型为int32_t的变量在分配空间时采用8字节对齐方式。
3、#pragma
作用是设定编译器的状态或者是指示编译器完成一些特定的动作
https://gcc.gnu.org/onlinedocs/cpp/Pragmas.html
4、volatile
用来声明变量,如volatile int a;,这样变量a将不受编译器优化选项的影响,保证值可以被手动更改。
https://www.geeksforgeeks.org/understanding-volatile-qualifier-in-c/
5、_declspec
如__declspec(align(#)),使得结构体中的变量对齐。
https://stackoverflow.com/questions/18165091/how-does-declspecalign-work