aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/tasks/userspace.h
blob: 208476ae83bf303fede47a273af6262f7c38d954 (plain) (blame)
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