MCPcopy Create free account
hub / github.com/TactilityProject/Tactility / module_construct_add_start

Function module_construct_add_start

TactilityKernel/source/module.cpp:85–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85error_t module_construct_add_start(struct Module* module) {
86 error_t error = module_construct(module);
87 if (error != ERROR_NONE) return error;
88 error = module_add(module);
89 if (error != ERROR_NONE) return error;
90 return module_start(module);
91}
92
93bool module_resolve_symbol(Module* module, const char* symbol_name, uintptr_t* symbol_address) {
94 if (!module_is_started(module)) return false;

Callers 2

kernel_initFunction · 0.85
runFunction · 0.85

Calls 3

module_constructFunction · 0.85
module_addFunction · 0.85
module_startFunction · 0.85

Tested by

no test coverage detected