pub fn exec(file_name: &str)Expand description
- loads the program into current address space
- create and map a user stack
- set TSS RSP0 so interrupts from user mode land on the kernel stack
- switch to user mode via iretq (point of no return)
pub fn exec(file_name: &str)