aboutsummaryrefslogtreecommitdiff
path: root/TCB.txt
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-05-21 21:02:17 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-05-21 21:02:17 +0300
commit8da0171e5ca3492cdb34422184a1c96acd0b5165 (patch)
treec125b7286f929c8ff7f8a2b938cec84328e99de4 /TCB.txt
parent836026dbba64793afc0d2591ffdb6fb39b696977 (diff)
downloadkmi-8da0171e5ca3492cdb34422184a1c96acd0b5165.tar.gz
kmi-8da0171e5ca3492cdb34422184a1c96acd0b5165.zip
add status info to memory mappings
+ next up would probably be to start working on process/thread relationships, largely as documented. Still not entirely sure about how I want to handle fork, but I suppose I might figure it out at some point.
Diffstat (limited to 'TCB.txt')
-rw-r--r--TCB.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/TCB.txt b/TCB.txt
index 4f262b4..4b7bf37 100644
--- a/TCB.txt
+++ b/TCB.txt
@@ -14,3 +14,7 @@ elevated to a process is a new one allocated. Only when the last thread in a
process is released is the memory released. Will still need to figure out
exactly how device memory should be freed, since it's handled globally instead
of per thread atm.
+
+Also, I suspect I may have made my life a bit too difficult with different sized
+pages, as I'm having a hell of a time figuring out how `fork` should be
+implemented :D