hmmm ok
guess I'll have 4 different libraries with my OS then
kernel system library, kernel standard library,
user system library, user standard library
Few questions about PDCLib of Solar's..
Re:Few questions about PDCLib of Solar's..
Kernel system library and user system library are quite clear - userspace doesn't need functions for VMM or PCI handling, and kernel space doesn't need functions for UI building or database functions.
But I think that PDCLib will be quite fit to be used in kernel and in user space. I don't see an issue there - the two are seperated by the system call boundary anyway, so you shouldn't get linker problems.
But I think that PDCLib will be quite fit to be used in kernel and in user space. I don't see an issue there - the two are seperated by the system call boundary anyway, so you shouldn't get linker problems.
Every good solution is obvious once you've found it.
Re:Few questions about PDCLib of Solar's..
I can confirm that I'm already using pdclib for kernel and user space.Solar wrote:But I think that PDCLib will be quite fit to be used in kernel and in user space. I don't see an issue there - the two are seperated by the system call boundary anyway, so you shouldn't get linker problems.
btw. thanks to Solar for the great work