mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
Merge branch 'master' of https://github.com/CosmosOS/Cosmos
This commit is contained in:
commit
050f4e4a11
2 changed files with 7 additions and 0 deletions
BIN
source/Cosmos.Core.Memory.Test/Heap.xlsx
Normal file
BIN
source/Cosmos.Core.Memory.Test/Heap.xlsx
Normal file
Binary file not shown.
|
|
@ -7,6 +7,13 @@ using Native = System.UInt32;
|
|||
|
||||
namespace Cosmos.Core.Memory.Test {
|
||||
unsafe static public class RAT {
|
||||
// RAT: RAM Allocation Table
|
||||
//
|
||||
// A byte table which defines the code which owns the page.
|
||||
// Owners can further subdivide table types on their own and RAT
|
||||
// code must not assume anything about contents of pages other
|
||||
// than who owns them.
|
||||
|
||||
static public class PageType {
|
||||
public const byte Empty = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue