Threads have isolated memory spaces

This commit is contained in:
2018-02-20 20:38:32 +01:00
parent 2d0f539e23
commit 6523b10984
3 changed files with 17 additions and 9 deletions

View File

@@ -8,6 +8,7 @@ struct thread
uint64_t tid;
void *stack_ptr;
uint64_t state;
uint64_t P4;
QUEUE_SPOT(runQ);
uint8_t stack[];
};