diff options
author | Christian Cunningham <cc@localhost> | 2022-03-18 13:21:06 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-18 13:21:06 -0700 |
commit | 74f95c5696335b02d768815fea2940bf089d057f (patch) | |
tree | 67910ed837cab2ccd59507b94b0dc204d3279fa4 /src/cpu | |
parent | 94f2b0b8f48f5715975446c637a078008fb7e941 (diff) |
Fixed Mutex Locking bug
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/irq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c index 6a5b43f..694742a 100644 --- a/src/cpu/irq.c +++ b/src/cpu/irq.c @@ -33,6 +33,7 @@ void c_irq_handler(void) // Handle the recieved data // Ctrl+T to toggle timer if(data == 0x14) { + uart_scheduler(); unsigned long timer_status; asm volatile("mrc p15, 0, %0, c14, c3, 1" : "=r"(timer_status)); if(timer_status == 0) { |