blob: 66325ec2e69d56610a4445c6ca259a53e43cb8d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <apos/tcb.h>
#include <apos/elf.h>
#include <csr.h>
stat_t jump_to_userspace(struct tcb *t, int argc, char **argv)
{
csr_write(CSR_SEPC, t->entry);
__asm__ volatile("mv sp, %0\n" ::"r"(t->proc_stack_top) : "memory");
__asm__ volatile("sret\n" ::: "memory");
/* we should never reach this */
return ERR_ADDR;
}
stat_t return_to_userspace(struct tcb *t)
{
/* lol */
return ERR_ADDR;
}
|