From 9bc0738101979b626233ee226ece3cc8cae053ec Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Sun, 2 Feb 2025 15:20:52 +0000 Subject: full flow implemented --- boot/fake_syscall.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 boot/fake_syscall.h (limited to 'boot/fake_syscall.h') diff --git a/boot/fake_syscall.h b/boot/fake_syscall.h new file mode 100644 index 0000000..f3da647 --- /dev/null +++ b/boot/fake_syscall.h @@ -0,0 +1,8 @@ +#include +#include "kjarna.h" + +typedef uint64_t syscall_delegate_parameters[6]; +typedef int64_t (syscall_delegate)(syscall_delegate_parameters params); + +int64_t fake_syscall_start(struct kjarna_boot_image *image); + -- cgit v1.3.1-1-g115d