diff options
Diffstat (limited to 'device/intr.c')
-rw-r--r-- | device/intr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/device/intr.c b/device/intr.c index 177c095..1e5a3ea 100644 --- a/device/intr.c +++ b/device/intr.c @@ -123,6 +123,7 @@ intr_thread () for (;;) { + assert_wait ((event_t) &intr_thread, FALSE); cli (); while (tot_num_intr) { @@ -162,8 +163,6 @@ intr_thread () } } sti (); - - assert_wait ((event_t) &intr_thread, FALSE); thread_block (thread_no_continuation); } } |