diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-09-08 12:20:53 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-09-08 12:20:53 +0000 |
| commit | f64ebb1c1f10e8d15fcc4879d781703c86c5fb8b (patch) | |
| tree | 065072709c699ac6dc3eb640368bd3f4106144e4 /apps/debug_menu.c | |
| parent | 69b4654ea28049c7e8637d521327ba10ae405f8b (diff) | |
| download | rockbox-f64ebb1c1f10e8d15fcc4879d781703c86c5fb8b.zip rockbox-f64ebb1c1f10e8d15fcc4879d781703c86c5fb8b.tar.gz rockbox-f64ebb1c1f10e8d15fcc4879d781703c86c5fb8b.tar.bz2 rockbox-f64ebb1c1f10e8d15fcc4879d781703c86c5fb8b.tar.xz | |
Sim I/O and threading that runs more like on target. Tweakable if any genuine slowness imitation is required for any one of them. One point of concern is the sim shutdown on an OS other than Linux just because terminating threads in a manner other than having the do it themselves is kind of dirty IMHO.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14639 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index f8492d3..d5c0b81 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -181,7 +181,6 @@ static bool dbg_list(struct action_callback_info *info) extern struct thread_entry threads[MAXTHREADS]; -#ifndef SIMULATOR static char thread_status_char(int status) { switch (status) @@ -256,7 +255,6 @@ static bool dbg_os(void) info.dbg_getname = threads_getname; return dbg_list(&info); } -#endif /* !SIMULATOR */ #ifdef HAVE_LCD_BITMAP #if CONFIG_CODEC != SWCODEC @@ -2270,9 +2268,7 @@ static const struct the_menu_item menuitems[] = { #if CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) { "Catch mem accesses", dbg_set_memory_guard }, #endif -#ifndef SIMULATOR { "View OS stacks", dbg_os }, -#endif #ifdef HAVE_LCD_BITMAP #ifndef SIMULATOR { "View battery", view_battery }, |