Cleanup syscalls
All checks were successful
Build documentation / build-and-deploy (push) Successful in 34s

This commit is contained in:
2026-01-27 17:34:43 +01:00
parent b388b30b24
commit cf51600c6a
12 changed files with 49 additions and 152 deletions

View File

@@ -15,7 +15,6 @@ struct procgroup;
struct proc_resource {
int type;
int rid;
atomic_int refs;
spin_lock_t lock;
struct rb_node_link resource_tree_link;
union {
@@ -28,6 +27,6 @@ struct proc_resource {
struct proc_resource* proc_find_resource (struct procgroup* procgroup, int rid);
struct proc_resource* proc_create_resource_mutex (struct procgroup* procgroup, int rid);
void proc_resource_unlink (struct proc_resource* resource);
void proc_delete_resource (struct proc_resource* resource);
#endif // _KERNEL_PROC_RESOURCE_H