1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 00:14:58 +00:00
serenity/Kernel/TestModule.cpp
Andreas Kling 6b150c794a Kernel: Implement very simple kernel module loading
It's now possible to load a .o file into the kernel via a syscall.
The kernel will perform all the necessary ELF relocations, and then
call the "module_init" symbol in the loaded module.
2019-11-28 20:59:11 +01:00

12 lines
215 B
C++

#include <Kernel/kstdio.h>
extern "C" void outside_func();
extern "C" void module_init()
{
kprintf("TestModule has booted!\n");
for (int i = 0; i < 99; ++i) {
kprintf("i is now %d\n", i);
}
}