Separate out actor scheduler #24
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the actor scheduler is embedded into the main cell.c. It works on platforms SDL supports. But in particular, we want to possibly port it to single threaded systems. In that case, an entire new scheduler needs created, which will be much simpler, without mutexes, atomics, and so on; we need the ability to swap them out at will, based on the platform targeted.
Check into libtask and libco for this.