kernel: implement a generic object signalling system

This commit is contained in:
2026-03-12 20:40:23 +00:00
parent 921c91c02a
commit 2fb8f556b4
7 changed files with 151 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ struct msg;
struct channel {
struct object c_base;
unsigned int c_id;
struct waitqueue c_wq;
unsigned int c_msg_waiting;
struct btree c_msg;
struct btree_node c_node;
};