Implement Mutexes and supporting syscalls, cleanup/optimize scheduler
All checks were successful
Build documentation / build-and-deploy (push) Successful in 39s

This commit is contained in:
2026-01-10 00:12:42 +01:00
parent 6a474c21a0
commit 41a458b925
17 changed files with 276 additions and 73 deletions

View File

@@ -0,0 +1,12 @@
#ifndef _KERNEL_PROC_SUSPENTION_Q_H
#define _KERNEL_PROC_SUSPENTION_Q_H
#include <libk/rbtree.h>
#include <sync/spin_lock.h>
struct proc_suspension_q {
struct rb_node_link* proc_tree;
spin_lock_t lock;
};
#endif // _KERNEL_PROC_SUSPENTION_Q_H