blob: f8d04727d58e7019c6816005eb18873dcec95dad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#include <stdint.h>
#include <stddef.h>
#include <kernel/system.h>
#include <kernel/tasks/userspace.h>
#include <kernel/tasks/process.h>
#include <kernel/memory/paging.h>
#include <kernel/io/io.h>
#include <kernel/interrupts/interrupts.h>
#include <kernel/lib/lib.h>
struct process *proc_bottom = NULL;
uint32_t hl_cr3;
uint32_t hl_eip;
uint32_t hl_esp;
uint32_t spawn_child(struct process *child)
{
return (uint32_t)-1;
}
void userspace_enter(struct process *proc)
{
proc_bottom = proc;
proc->next = NULL;
hl_eip = proc->registers.eip;
hl_esp = proc->registers.esp;
paging_switch_directory(proc->cr3);
current_proc = proc;
sti();
jump_userspace();
}
void single_yield(struct process *proc, struct regs *regs)
{
memcpy(&proc_bottom->registers, regs, sizeof(struct regs));
if (proc == proc_bottom)
panic("Can't return from parent process");
proc->next = proc_bottom;
proc_bottom = proc;
memcpy(regs, &proc->registers, sizeof(struct regs));
paging_switch_directory(proc->cr3);
}
uint32_t single_exit(struct regs *regs)
{
//close(current_proc->stdout);
//close(current_proc->stderr);
uint32_t hold = regs->ebx;
proc_bottom = proc_bottom->next;
if (proc_bottom == NULL)
panic("Return from process with no parent");
memcpy(regs, &proc_bottom->registers, sizeof(struct regs));
paging_switch_directory(proc_bottom->cr3);
return hold;
}
|