aboutsummaryrefslogtreecommitdiff
path: root/include/apos
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-11-13 06:11:43 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2022-11-13 06:11:43 +0200
commit6d3586aa42409fc720e30856cb5df5284329463a (patch)
tree571136fdb4f6fb333c1bb4b1274a76eb70263de9 /include/apos
parent7da8912c0eee10315dac37cecd4c84f11e5dad59 (diff)
downloadkmi-6d3586aa42409fc720e30856cb5df5284329463a.tar.gz
kmi-6d3586aa42409fc720e30856cb5df5284329463a.zip
~700k ipc requests
+ Eliminated need for save/load_regs, now the register save area is behind a pointer which _slightly_ increases overall syscall delay, but speeds up ipc requests by a fair bit.
Diffstat (limited to 'include/apos')
-rw-r--r--include/apos/tcb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/apos/tcb.h b/include/apos/tcb.h
index 9ed916f..23e6451 100644
--- a/include/apos/tcb.h
+++ b/include/apos/tcb.h
@@ -78,6 +78,8 @@ struct tcb {
/** Execution continuation point. Important that it is first. */
vm_t exec;
+ vm_t regs;
+
/** Arch-specific data. */
struct arch_tcbd tcbd;