Searched defs:elf_module (Results 1 – 1 of 1) sorted by relevance
87 struct elf_module { struct88 char name[MODULE_NAME_SIZE]; // The module name90 bool shallow; // Whether the module contains any code92 struct list_head required; // Head of the required modules list93 struct list_head dependants; // Head of module dependants list94 struct list_head list; // The list entry in the module list96 module_ctor_t *ctors; // module constructors97 module_ctor_t *dtors; // module destructors98 module_main_t main_func; // The main function (for executable modules)100 void *module_addr; // The module location in the memory[all …]