diff options
Diffstat (limited to 'com32/include')
-rw-r--r-- | com32/include/sys/exec.h | 1 | ||||
-rw-r--r-- | com32/include/sys/module.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/com32/include/sys/exec.h b/com32/include/sys/exec.h index e2be29b0..c839df02 100644 --- a/com32/include/sys/exec.h +++ b/com32/include/sys/exec.h @@ -19,6 +19,7 @@ */ extern int exec_init(); + /** * load_library - Loads a dynamic library into the environment. */ diff --git a/com32/include/sys/module.h b/com32/include/sys/module.h index 2c9ce9d4..c3c077ad 100644 --- a/com32/include/sys/module.h +++ b/com32/include/sys/module.h @@ -239,6 +239,11 @@ extern int module_load_shallow(struct elf_module *module); extern int module_unload(struct elf_module *module); /** + * module_unloadable - + */ +extern int module_unloadable(struct elf_module *module); + +/** * module_find - searches for a module by its name. * @name: the name of the module, as it was specified in module_alloc. * |