From 8a3452098267e1af127d6c4f1836a9d82cd23f38 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 2 Jul 2024 21:40:10 +0300 Subject: more complete interrupt handling outline + Still largely untested, should really try to come up with a proper testsuite, at the moment it's mostly me trying things out in the (as of yet unreleased) kmx repo --- src/proc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/proc.c') diff --git a/src/proc.c b/src/proc.c index 7bfab0a..45d1e5e 100644 --- a/src/proc.c +++ b/src/proc.c @@ -46,7 +46,8 @@ stat_t init_proc(void *fdt) use_tcb(t); /* init process has all capabilities */ - set_caps(t->caps, 0, CAP_CAPS | CAP_PROC | CAP_CALL | CAP_POWER); + set_caps(t->caps, 0, + CAP_CAPS | CAP_PROC | CAP_SIGNAL | CAP_POWER | CAP_NOTIFY); t->notify_id = t->tid; -- cgit v1.3