forked from eden-emu/eden
kernel: Various 64-bit fixes in memory/process/thread
This commit is contained in:
parent
1d01ffccb8
commit
ebd4b1422d
5 changed files with 14 additions and 14 deletions
|
@ -13,9 +13,9 @@ namespace Kernel {
|
|||
class VMManager;
|
||||
|
||||
struct MemoryRegionInfo {
|
||||
u32 base; // Not an address, but offset from start of FCRAM
|
||||
u32 size;
|
||||
u32 used;
|
||||
u64 base; // Not an address, but offset from start of FCRAM
|
||||
u64 size;
|
||||
u64 used;
|
||||
|
||||
std::shared_ptr<std::vector<u8>> linear_heap_memory;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue