diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-13 16:59:14 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-13 16:59:14 +0000 |
commit | 253eadb525c788a9b5ac2cdc1d0e442c5cbe9a56 (patch) | |
tree | 2b8f12163ddaf814f326fa0f58d861b936dbd8ad | |
parent | 81e309dd1a768c2fcf2cc9e6acd16dc01f9ce360 (diff) | |
download | rockbox-253eadb525c788a9b5ac2cdc1d0e442c5cbe9a56.tar.gz rockbox-253eadb525c788a9b5ac2cdc1d0e442c5cbe9a56.zip |
OK, no HIGHEST_IRQ_LEVEL defined for the sim. I use a number again, the code here is pointless anyhow.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4375 a1c6a512-1295-4272-9138-f99709370657
-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 9c82435df2..44ac88ae7c 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(HIGHEST_IRQ_LEVEL); + oldlevel = set_irq_level(15<<4); wr = (q->write++) & QUEUE_LENGTH_MASK; q->events[wr].id = id; |