vfs - kinda good vfs implementation

This commit is contained in:
RaphProductions 2025-05-16 20:53:35 +02:00
parent cfc9159ad9
commit 1e84bcedc9
13 changed files with 3650 additions and 12 deletions

12
kernel/src/dbg/sym.h Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include "mm/vmm.h"
typedef struct func {
uint64_t base;
uint64_t ip;
char *name;
} func;
void ksym_init();
func *ksym_fromip(uint64_t ip);