kernel: add a syscall to query generic information about an object

This commit is contained in:
2026-03-29 11:50:37 +01:00
parent 62770f4ab2
commit 04617e81e3
7 changed files with 42 additions and 0 deletions
+3
View File
@@ -4,5 +4,8 @@
#include <mango/types.h>
extern kern_status_t kern_object_wait(kern_wait_item_t *items, size_t nr_items);
extern kern_status_t kern_object_query(
kern_handle_t handle,
kern_object_info_t *out);
#endif