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

@@ -0,0 +1,8 @@
#ifndef MANGO_OBJECT_H_
#define MANGO_OBJECT_H_
#include <mango/types.h>
extern kern_status_t kern_object_wait(kern_wait_item_t *items, size_t nr_items);
#endif