diff options
Diffstat (limited to 'cpp/999spaces.cc')
-rw-r--r-- | cpp/999spaces.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cpp/999spaces.cc b/cpp/999spaces.cc new file mode 100644 index 00000000..ace149fc --- /dev/null +++ b/cpp/999spaces.cc @@ -0,0 +1,15 @@ +//: Since different layers all carve out different parts of various namespaces +//: (recipes, memory, etc.) for their own use, there's no previous place where +//: we can lay out the big picture of what uses what. So we'll do that here. +//: +//:: Memory +//: +//: Location 0 - unused (since it can help uncover bugs) +//: Locations 1-999 - reserved for tests +//: Locations 1000 ('Reserved_for_tests') onward - available to the allocator in chunks of size Initial_memory_per_routine. +//: +//:: Recipes +//: +//: 0 - unused (IDLE; do nothing) +//: 1-999 - all fixed code +//: 1000 onwards - reserved for tests, cleared between tests |