Home | History | Annotate | Download | only in ld

Lines Matching full:init_priority

371 /* Return the numerical value of the init_priority attribute from
378 unsigned long init_priority;
380 /* GCC uses the following section names for the init_priority
385 decimal numerical value of the init_priority attribute.
389 decimal numerical value of the init_priority attribute.
396 init_priority = strtoul (name + 12, &end, 10);
397 return *end ? 0 : init_priority;
402 init_priority = strtoul (name + 7, &end, 10);
403 return *end ? 0 : 65535 - init_priority;