aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/tasks/userspace.h
blob: d66ba54f2b1b19b83044151e6030475314d18c13 (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 <interrupts/interrupts.h>
#include <stdint.h>
#include <tasks/process.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