Files
mop3/kernel/proc/suspension_q.h
kamkow1 41a458b925
All checks were successful
Build documentation / build-and-deploy (push) Successful in 39s
Implement Mutexes and supporting syscalls, cleanup/optimize scheduler
2026-01-10 00:12:42 +01:00

13 lines
250 B
C

#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