Properly implement liballoc_free ()

This commit is contained in:
2026-01-16 22:09:16 +01:00
parent ab8093cc6c
commit 9a7dbf0594
12 changed files with 142 additions and 24 deletions

View File

@@ -3,6 +3,7 @@
#include <libk/rbtree.h>
#include <libk/std.h>
#include <proc/mem.h>
#include <proc/mutex.h>
#include <sync/spin_lock.h>
@@ -13,15 +14,7 @@
#define RV_PUBLIC 1
struct proc;
struct proc_resource_mem {
uintptr_t paddr;
size_t pages;
};
struct proc_resource_mem_init {
size_t pages;
};
struct proc_resource;
struct proc_resource {
int type;