Cycle through multiple tasks in multiple processes

This commit is contained in:
Drew Galbraith 2023-05-18 13:56:54 -07:00
parent 7a3b4d2d42
commit d3024211a7
6 changed files with 56 additions and 12 deletions

View file

@ -18,6 +18,9 @@ class Thread {
uint64_t* Rsp0Ptr() { return &rsp0_; }
// Called the first time the thread starts up.
void Init();
// FIXME: Probably make this private.
Thread* next_thread_;