1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef MELVIX_USERSPACE_H #define MELVIX_USERSPACE_H #include <stdint.h> #include <tasks/process.h> #include <interrupts/interrupts.h> u32 spawn_child(struct process *child); void userspace_enter(struct process *proc); void single_yield(struct process *proc, struct regs *regs); u32 single_exit(struct regs *regs); extern void jump_userspace(); #endif