Home
last modified time | relevance | path

Searched defs:priority (Results 1 – 2 of 2) sorted by relevance

/commonlibrary/utils_lite/include/
Dohos_init.h68 #define LAYER_INITCALL(func, layer, clayer, priority) \ argument
72 #define LAYER_INITCALL(func, layer, clayer, priority) \ argument
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
/commonlibrary/c_utils/base/src/
Dthread_ex.cpp29 int priority; member
106 ThreadStatus Thread::Start(const std::string& name, int32_t priority, size_t stack) in Start()