From 4f4d9fdc89c27aa3346467a24b621954f4564d3b Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 29 Dec 2021 23:23:36 +0200 Subject: Refactoring + Mainly just moving stuff out or arch/riscv/ that should be handled in common/ + Prepared separate process stack/call stack for server callbacks, rest to be implemeted soon ish --- include/apos/elf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/apos/elf.h') diff --git a/include/apos/elf.h b/include/apos/elf.h index df07b7f..4fe74d1 100644 --- a/include/apos/elf.h +++ b/include/apos/elf.h @@ -184,6 +184,6 @@ __packed struct section64_header { #define program_header_prop(c, e, p) (c == ELFCLASS64 ? program64_header(e)->p : program32_header(e)->p) #define section_header_prop(c, e, p) (c == ELFCLASS64 ? section64_header(e)->p : section32_header(e)->p) -vm_t prepare_proc(struct tcb *t, vm_t p); +vm_t load_elf(struct tcb *t, vm_t b); #endif /* APOS_ELF_H */ -- cgit v1.3