cleanup属性:当变量离开它的作用域时,设置的cleanup_function函数将被调用。 cleanup (cleanup_function) The cleanup attribute runs a function when the variable goes out of scope. Read More
posted @ 2017-04-29 23:20 suonikeyinsu Views(1207) Comments(0) Diggs(0) Edit
__attribute__的属性aligned,作用是为了设置字节对齐。 aligned是对 变量和结构体进行 字节对齐的属性设置。 通过aligned属性设置(aligned(对齐字节数)),可以显示的设置对齐字节数,如果使用缺省属性(aligned()),编译器会有一个默认的字节对齐数。 ali Read More
posted @ 2017-04-29 22:26 suonikeyinsu Views(3682) Comments(0) Diggs(0) Edit
1.什么是__attribute__? __attribute__机制是GNU C的一大特色,它可以设置函数属性、变量属性和类型属性等。可以通过它们向编译器提供更多数据,帮助编译器执行优化等。 2.__attribute__语法格式? https://gcc.gnu.org/onlinedocs/g Read More
posted @ 2017-04-29 21:40 suonikeyinsu Views(677) Comments(0) Diggs(0) Edit