Lines Matching refs:priority
68 #define LAYER_INITCALL(func, layer, clayer, priority) \ argument
69 static __attribute__((constructor(CTOR_VALUE_##layer + LAYER_INIT_LEVEL_##priority))) \
70 void BOOT_##layer##priority##func() {func();}
72 #define LAYER_INITCALL(func, layer, clayer, priority) \ argument
74 __attribute__((section(".zinitcall." clayer #priority ".init"))) = func
104 #define CORE_INIT_PRI(func, priority) LAYER_INITCALL(func, core, "core", priority) argument
129 #define SYS_SERVICE_INIT_PRI(func, priority) LAYER_INITCALL(func, sys_service, "sys.service", prior… argument
154 #define SYS_FEATURE_INIT_PRI(func, priority) LAYER_INITCALL(func, sys_feature, "sys.feature", prior… argument
179 #define SYS_RUN_PRI(func, priority) LAYER_INITCALL(func, run, "run", priority) argument
203 #define SYSEX_SERVICE_INIT_PRI(func, priority) LAYER_INITCALL(func, app_service, "app.service", pri… argument
227 #define SYSEX_FEATURE_INIT_PRI(func, priority) LAYER_INITCALL(func, app_feature, "app.feature", pri… argument
252 #define APP_SERVICE_INIT_PRI(func, priority) LAYER_INITCALL(func, app_service, "app.service", prior… argument
277 #define APP_FEATURE_INIT_PRI(func, priority) LAYER_INITCALL(func, app_feature, "app.feature", prior… argument