✨ feat(module manager API): rename api with manager
This commit is contained in:
@@ -147,7 +147,7 @@ int stellar_module_manager_get_max_thread_num(struct stellar_module_manager*mod_
|
||||
return mod_mgr->schema.max_thread_num;
|
||||
}
|
||||
|
||||
struct mq_schema *stellar_module_get_mq_schema(struct stellar_module_manager *mod_mgr)
|
||||
struct mq_schema *stellar_module_manager_get_mq_schema(struct stellar_module_manager *mod_mgr)
|
||||
{
|
||||
if(mod_mgr==NULL)return NULL;
|
||||
return mod_mgr->schema.mq_schema;
|
||||
@@ -167,7 +167,7 @@ int stellar_module_manager_get_thread_id(struct stellar_module_manager* mod_mgr
|
||||
return local_thread_id;
|
||||
}
|
||||
|
||||
struct mq_runtime *stellar_module_get_mq_runtime(struct stellar_module_manager *mod_mgr __unused)
|
||||
struct mq_runtime *stellar_module_manager_get_mq_runtime(struct stellar_module_manager *mod_mgr __unused)
|
||||
{
|
||||
return local_mq_rt;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user