diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-13 16:45:18 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-13 16:45:18 +0000 |
commit | 81e309dd1a768c2fcf2cc9e6acd16dc01f9ce360 (patch) | |
tree | f86855227f2ab1f4963c215128df21effeb7dfbb /uisimulator/win32/kernel.c | |
parent | 4cee740afa540ce26babb92d26cbb5b524cc245a (diff) |
We had a few set_irq_level(15) left in the code, instead of the new set_irq_level(HIGHEST_IRQ_LEVEL). Only one was really used, in system_reboot(), creating a (unlikely) race condition.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4374 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/kernel.c')
-rw-r--r-- | uisimulator/win32/kernel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/win32/kernel.c b/uisimulator/win32/kernel.c index 466950eba0..9c82435df2 100644 --- a/uisimulator/win32/kernel.c +++ b/uisimulator/win32/kernel.c @@ -86,7 +86,7 @@ void queue_post(struct event_queue *q, int id, void *data) int wr; int oldlevel; - oldlevel = set_irq_level(15); + oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL); wr = (q->write++) & QUEUE_LENGTH_MASK; q->events[wr].id = id; |