summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-10-26 23:11:18 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-10-26 23:11:18 +0000
commitd6af28739747099f98f541d1b76ba501882e113c (patch)
treeb6ad8d89d0ef96dd4cea37dd89aad8d3fa345179 /apps
parentf026c0fc826149a3c88d462cca02b69ef5690c30 (diff)
downloadrockbox-d6af28739747099f98f541d1b76ba501882e113c.tar.gz
rockbox-d6af28739747099f98f541d1b76ba501882e113c.zip
Implement as genuine a set_irq_level function for the sim as possible. The yield added earlier is still nescessary since other threads won't run anyway while viewing the database screen on either sim or target.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15321 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/list.c8
-rw-r--r--apps/main.c5
2 files changed, 9 insertions, 4 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c
index 4d19bbdf96..38cecaefcc 100644
--- a/apps/gui/list.c
+++ b/apps/gui/list.c
@@ -1285,11 +1285,11 @@ bool simplelist_show_list(struct simplelist_info *info)
1285 gui_syncstatusbar_draw(&statusbars, true); 1285 gui_syncstatusbar_draw(&statusbars, true);
1286 list_do_action(CONTEXT_STD, info->timeout, 1286 list_do_action(CONTEXT_STD, info->timeout,
1287 &lists, &action, LIST_WRAP_UNLESS_HELD); 1287 &lists, &action, LIST_WRAP_UNLESS_HELD);
1288#ifdef SIMULATOR 1288
1289 /* Sim has no interrupts, so this is needed for buttons to be recognised */ 1289 /* We must yield in this case or no other thread can run */
1290 if (info->timeout == TIMEOUT_NOBLOCK) 1290 if (info->timeout == TIMEOUT_NOBLOCK)
1291 yield(); 1291 yield();
1292#endif 1292
1293 if (info->action_callback) 1293 if (info->action_callback)
1294 { 1294 {
1295 action = info->action_callback(action, &lists); 1295 action = info->action_callback(action, &lists);
diff --git a/apps/main.c b/apps/main.c
index 366fed9585..d75bb726cf 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -113,6 +113,10 @@
113 113
114#include "cuesheet.h" 114#include "cuesheet.h"
115 115
116#ifdef SIMULATOR
117#include "system-sdl.h"
118#endif
119
116/*#define AUTOROCK*/ /* define this to check for "autostart.rock" on boot */ 120/*#define AUTOROCK*/ /* define this to check for "autostart.rock" on boot */
117 121
118const char appsversion[]=APPSVERSION; 122const char appsversion[]=APPSVERSION;
@@ -267,6 +271,7 @@ static void init(void)
267{ 271{
268 init_threads(); 272 init_threads();
269 buffer_init(); 273 buffer_init();
274 set_irq_level(0);
270 lcd_init(); 275 lcd_init();
271#ifdef HAVE_REMOTE_LCD 276#ifdef HAVE_REMOTE_LCD
272 lcd_remote_init(); 277 lcd_remote_init();