KPT global variable

This commit is contained in:
Alex
2022-12-06 09:30:09 +02:00
parent 3454c9692f
commit f86777a856
4 changed files with 145 additions and 6 deletions

View File

@ -655,6 +655,8 @@ extern Memory::PageTable4 *UserspaceKernelOnlyPageTable;
#endif // __cplusplus
extern void *KPT;
EXTERNC void *HeapMalloc(uint64_t Size);
EXTERNC void *HeapCalloc(uint64_t n, uint64_t Size);
EXTERNC void *HeapRealloc(void *Address, uint64_t Size);