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

uint32_t spawn_child(struct process *child);

void userspace_enter(struct process *proc);

void single_yield(struct process *proc, struct regs *regs);
uint32_t single_exit(struct regs *regs);

extern void jump_userspace();

#endif