vfs - kinda good vfs implementation
This commit is contained in:
parent
cfc9159ad9
commit
1e84bcedc9
13 changed files with 3650 additions and 12 deletions
12
kernel/src/dbg/sym.h
Normal file
12
kernel/src/dbg/sym.h
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue