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 /pit.cpp | |
parent | 56f5c483ee516245867a312c7e1520c3f4df16c7 (diff) |
fixed multithreading!
Diffstat (limited to 'pit.cpp')
-rw-r--r-- | pit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ static void timer_callback(const Registers& regs) { ticks = ticks + 1; - schedule(const_cast<Registers&>(regs)); + schedule(regs); } void pit_initialize(std::uint32_t frequency) |