diff options
| author | Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com> | 2005-02-13 17:07:40 +0000 |
|---|---|---|
| committer | Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com> | 2005-02-13 17:07:40 +0000 |
| commit | a1eb3d93f62a0eea03fddc4746311d6207d49ba0 (patch) | |
| tree | 1c8ee22530c361ee05e78e19c820cf17f91bf23e /firmware/thread.c | |
| parent | 3f818ac5941fdb483db9385b49523bfb86bba24a (diff) | |
| download | rockbox-a1eb3d93f62a0eea03fddc4746311d6207d49ba0.zip rockbox-a1eb3d93f62a0eea03fddc4746311d6207d49ba0.tar.gz rockbox-a1eb3d93f62a0eea03fddc4746311d6207d49ba0.tar.bz2 rockbox-a1eb3d93f62a0eea03fddc4746311d6207d49ba0.tar.xz | |
Feature conditional compilation policy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5939 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/thread.c')
| -rw-r--r-- | firmware/thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/thread.c b/firmware/thread.c index 7f833c3..fc8b9e5 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -1,4 +1,4 @@ -/*************************************************************************** +e/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / @@ -207,7 +207,7 @@ void switch_thread(void) /* Check if the current thread stack is overflown */ stackptr = thread_stack[current]; -#if ! (defined(IRIVER_H100) || defined (ARCHOS_GMINI120)) +#if ! (defined(IRIVER_H100) || (CONFIG_CPU == TCC730)) if(stackptr[0] != DEADBEEF) panicf("Stkov %s", thread_name[current]); #endif |