diff options
author | Christian Cunningham <cc@localhost> | 2022-03-11 20:56:41 -0800 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-11 20:56:41 -0800 |
commit | f1a310b37e482d091a4c4ac6cbbf7a27f4033a7e (patch) | |
tree | e8af19382c473b3c9a656742c7212fc11fa01611 /src/cpu/irq.c | |
parent | 8f9566a2f3e73a1032768ebf132b4a3846bbd46c (diff) |
Remove Debug Info
Diffstat (limited to 'src/cpu/irq.c')
-rw-r--r-- | src/cpu/irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c index 51bc7f2..65300af 100644 --- a/src/cpu/irq.c +++ b/src/cpu/irq.c @@ -60,7 +60,7 @@ void c_irq_handler(void) static char timer_lock = 0; if (!timer_lock) { timer_lock = 1; - //add_thread(test_entry, 0, 2); + add_thread(test_entry, 0, 2); timer_lock = 0; } *nexttime = *timer_chi + 30000000; @@ -103,6 +103,6 @@ void handle_data(unsigned char data) } else if (data == 0x61) { add_thread(uart_scheduler, 0, 2); } else if (data == 0x62) { - add_thread(test_entry, 0, 2); + //add_thread(test_entry, 0, 2); } } |