From 253eadb525c788a9b5ac2cdc1d0e442c5cbe9a56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohensohn?= Date: Sat, 13 Mar 2004 16:59:14 +0000 Subject: [PATCH] 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 --- uisimulator/win32/kernel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;