当前位置:首页 > > 充电吧
[导读]__attribute__: GNU C 的一大特色就是__attribute__ 机制。__attribute__ 可以设置函数属性(Function),变量属性(Variable)和类型属性(Ty


__attribute__: GNU C 的一大特色就是__attribute__ 机制。__attribute__ 可以设置函数属性(Function),变量属性(Variable)和类型属性(Type)。

__attribute__ 书写特征是:

---- __attribute__ 前后都有两个下划线,并切后面会紧跟一对原括弧,括弧里面是相应的__attribute__ 参数。

__attribute__ 语法格式为:__attribute__ ((attribute-list))

__attribute__关键字主要是用来在函数或数据声明中设置其属性。给函数设置属性的主要目的在于让编译器进行优化。GCC为函数提供了几种类型的属性,其中包含:

1)构造函数(constructors)和析构函数(destructors)。

__attribute__((constructor)): 需要在main函数之前调用的函数,可以设置constructor属性,实现初始化。

2)packed属性:使用该属性可以使得变量或者结构体成员使用最小的对齐方式。

__attribute__((packed))的作用就是告诉编译器取消结构在编译过程中的优化对齐,按照实际占用字节数进行对齐,是GCC特有的语法。这个功能和OS没有关系,和编译器有关,gcc的编译器不是紧凑模式的,在windows下,vc的编译器也不是紧凑的,tc的编译器是紧凑的。例如:

在GCC下: 

struct data{
	char ch; 
	int num;
};

sizeof(int) = 4; sizeof(data) = 8; (非紧凑模式)

struct data{
	char ch; 
	int num;
}__attribute__((packed));

sizeof(int) = 4; sizeof(data) = 5;

程序员应当使用类似下面的方式来指定这些属性:


__attribute__((constructor)) static void beforeFunction()
{
    printf("beforeFunctionn");
}

查阅GNU的文档:



constructor ()destructor ()


--- The constructor attribute causes the function to be called automatically before execution enters main().

--- Similarly, the destructor attribute causes the function to be called automatically after main() completes or exit() is called.

--- Functions with these attributes are useful for initializing data that is used implicitly during the execution of the program.You can set an optional integer priority to control the order in which constructor and destructor funcs are run.  A constructorwith a smaller priority number runs before a constructor with a larger priority number;the opposite relationship holds for destructors. 构造函数优先级数字越小,越先执行。析构函数相反。


So, if you have a constructor that allocates a resource and a destructor that deallocates the same resource, both functions typically have the same priority.  

The priorities for constructor and destructor functions are the same as those specified for namespace-scope

C++ objects (see C++ Attributes).These attributes are not currently implemented for Objective-C. 


/* max length */
#define MAX_LEN 16
/*server max number */
#define MAX_SNUM 10
/*port max number*/
#define MAX_PNUM 10
enum server_state{idle = 0,in_use};

//server information
typedef struct server_info{
    char host_name[MAX_LEN];
	int port_id[MAX_PNUM];
	enum server_state st[MAX_PNUM];
	char used_by[MAX_PNUM][MAX_LEN];
	char ip_address[MAX_PNUM][MAX_LEN];
} S_Info;

char pre_host_name[MAX_SNUM][MAX_LEN] = {
                    "eslruntime01",
                    "eslruntime02",
                    "eslruntime03",
                    "eslruntime04",
                    "eslruntime05",
                    "eslruntime06",
                    "eslruntime07",
                    "eslruntime08",
                    "eslruntime09",
                    "eslruntime10"
};

int port_inf[MAX_PNUM] = {10000,10001,10002,10003,10004,10005,10006,10007,10008,10009};
enum server_state sst[MAX_PNUM] = {idle};
//create server table
static S_Info * init_server_info()
{
    S_Info * server_t = (S_Info *)malloc(sizeof(S_Info) * MAX_SNUM);
    int i,j,k;
    for (i = 0;i < MAX_SNUM;++i)
	{ 
	    for(j = 0;j < MAX_PNUM;++j)
		{
            server_t[i].port_id[j] = port_inf[j];
            server_t[i].st[j] = sst[j];
			memset(server_t[i].used_by[j],0,MAX_LEN);
			memset(server_t[i].ip_address[j],0,MAX_LEN);
		}
	    for(k = 0;k < MAX_LEN;++k)
		{
	        server_t[i].host_name[k] = pre_host_name[i][k];		    
	    }			
	}
    return server_t;
}

//global variable
S_Info * server_total;
static void create_total_server() __attribute__((constructor));
static void free_total_server() __attribute__((destructor));

static void create_total_server()
{
	server_total = init_server_info();
}

static void free_total_server()
{
	free(server_total);
	server_total = NULL;
}


可以给属性设置优先级:



static  __attribute__((constructor(101))) void before1()
{

    printf("before1n");
}
static  __attribute__((constructor(102))) void before2()
{

    printf("before2n");
}
static  __attribute__((constructor(103))) void before3()
{

    printf("before3n");
}


以上三个函数会依照优先级的顺序调用.括号内的数值(101,102,103)代表优先级,另外,我以前看过,这个1-100的范围是保留的.

所以,最好从100之后开始用.(但是实际上,我在项目中测试100以内的,也没有得到警告)

main函数之前的,即constructor的优先级,数值越小,越先调用。destructor中的数值越大,越先调用。

关于格式 -- 按照文档中的说法,__attribute__应该放在函数声明的尾部;之前.


__attribute__((constructor)) // 在main函数被调用之前调用
__attribute__((destructor)) // 在main函数被调用之后调
#include__attribute__((constructor)) void before_main() { 
   printf("before mainn"); 
} 

__attribute__((destructor)) void after_main() { 
   printf("after mainn"); 
} 

int main(int argc, char **argv) { 
   printf("in mainn"); 
   return 0; 
}
//这个例子的输出结果将会是:
before main
in main
after main


本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
换一批
延伸阅读

LED驱动电源的输入包括高压工频交流(即市电)、低压直流、高压直流、低压高频交流(如电子变压器的输出)等。

关键字: 驱动电源

在工业自动化蓬勃发展的当下,工业电机作为核心动力设备,其驱动电源的性能直接关系到整个系统的稳定性和可靠性。其中,反电动势抑制与过流保护是驱动电源设计中至关重要的两个环节,集成化方案的设计成为提升电机驱动性能的关键。

关键字: 工业电机 驱动电源

LED 驱动电源作为 LED 照明系统的 “心脏”,其稳定性直接决定了整个照明设备的使用寿命。然而,在实际应用中,LED 驱动电源易损坏的问题却十分常见,不仅增加了维护成本,还影响了用户体验。要解决这一问题,需从设计、生...

关键字: 驱动电源 照明系统 散热

根据LED驱动电源的公式,电感内电流波动大小和电感值成反比,输出纹波和输出电容值成反比。所以加大电感值和输出电容值可以减小纹波。

关键字: LED 设计 驱动电源

电动汽车(EV)作为新能源汽车的重要代表,正逐渐成为全球汽车产业的重要发展方向。电动汽车的核心技术之一是电机驱动控制系统,而绝缘栅双极型晶体管(IGBT)作为电机驱动系统中的关键元件,其性能直接影响到电动汽车的动力性能和...

关键字: 电动汽车 新能源 驱动电源

在现代城市建设中,街道及停车场照明作为基础设施的重要组成部分,其质量和效率直接关系到城市的公共安全、居民生活质量和能源利用效率。随着科技的进步,高亮度白光发光二极管(LED)因其独特的优势逐渐取代传统光源,成为大功率区域...

关键字: 发光二极管 驱动电源 LED

LED通用照明设计工程师会遇到许多挑战,如功率密度、功率因数校正(PFC)、空间受限和可靠性等。

关键字: LED 驱动电源 功率因数校正

在LED照明技术日益普及的今天,LED驱动电源的电磁干扰(EMI)问题成为了一个不可忽视的挑战。电磁干扰不仅会影响LED灯具的正常工作,还可能对周围电子设备造成不利影响,甚至引发系统故障。因此,采取有效的硬件措施来解决L...

关键字: LED照明技术 电磁干扰 驱动电源

开关电源具有效率高的特性,而且开关电源的变压器体积比串联稳压型电源的要小得多,电源电路比较整洁,整机重量也有所下降,所以,现在的LED驱动电源

关键字: LED 驱动电源 开关电源

LED驱动电源是把电源供应转换为特定的电压电流以驱动LED发光的电压转换器,通常情况下:LED驱动电源的输入包括高压工频交流(即市电)、低压直流、高压直流、低压高频交流(如电子变压器的输出)等。

关键字: LED 隧道灯 驱动电源
关闭