From 96e5d8dc99010e2cec8bd2edf59545bd13f6f769 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 28 May 2022 14:08:12 +0300 Subject: start implementing new proc/rpc handling + Essentially, separate root process and remote procedure call handling. I really should write down some documentation so I don't forget, but essentially: All threads share a common process virtual memory, and when a thread wants to make an rpc, it switches over to its own rpc vmem space that is linked to the remote process. --- include/apos/utils.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/apos/utils.h') diff --git a/include/apos/utils.h b/include/apos/utils.h index 03bb801..c4a83be 100644 --- a/include/apos/utils.h +++ b/include/apos/utils.h @@ -27,6 +27,7 @@ #define QUOTE(x) QUOTE2(x) #define UNUSED(x) ((void)(x)) +#define MAYBE_UNUSED(x) UNUSED(x) #include -- cgit v1.3