Where do you put your kernel stack ?
Posted: Tue Jul 10, 2007 12:30 am
Hi,
Where do you make your stack spaces?
What address? and how much?
Where do you make your stack spaces?
What address? and how much?
The Place to Start for Operating System Developers
http://f.osdev.org/
A simple way:sjpark wrote:Where do you make your stack spaces?
What address? and how much?
Code: Select all
void* new_kernel_stack = malloc(STACK_SIZE) + STACK_SIZE;