diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 10:21:26 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 10:21:26 -0400 |
commit | 35aa65037bebd800f9cba2b558d245552960a5d7 (patch) | |
tree | f307e44b7f30f7d9f6ab694c11c4a046c988b1ba /tasking.hpp | |
parent | 56f5c483ee516245867a312c7e1520c3f4df16c7 (diff) |
fixed multithreading!
Diffstat (limited to 'tasking.hpp')
-rw-r--r-- | tasking.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasking.hpp b/tasking.hpp index 5e03f25..64a738e 100644 --- a/tasking.hpp +++ b/tasking.hpp @@ -6,7 +6,7 @@ void tasking_initialize(); bool tasking_spawn(void (*entry)(), unsigned ssize); -void schedule(Registers& regs); +void schedule(const Registers& regs); #endif // TASKING_HPP |