summaryrefslogtreecommitdiff
path: root/kernel/ipc.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-02-14 17:40:06 +0100
committerAnton Kling <anton@kling.gg>2024-02-14 17:40:06 +0100
commit3922adcdec5bd003b4106ffce79c28553bc40c15 (patch)
treef1af360cd7ad75d4b5f19bf066bf7e29ce8e3e53 /kernel/ipc.h
parenta8ffc46136eb16adc87fb520c724467d1295a854 (diff)
Kernel: Update signal handling and IPC
Diffstat (limited to 'kernel/ipc.h')
-rw-r--r--kernel/ipc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/ipc.h b/kernel/ipc.h
index cfa9e6d..ae67f71 100644
--- a/kernel/ipc.h
+++ b/kernel/ipc.h
@@ -3,8 +3,8 @@
#include <stdbool.h>
#include <typedefs.h>
-#define IPC_BUFFER_SIZE 4096
-#define IPC_NUM_DATA 32
+#define IPC_BUFFER_SIZE 0x2000
+#define IPC_NUM_DATA 400
struct IpcMessage {
u8 is_used;