summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-13 17:07:40 +0000
committerJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-13 17:07:40 +0000
commita1eb3d93f62a0eea03fddc4746311d6207d49ba0 (patch)
tree1c8ee22530c361ee05e78e19c820cf17f91bf23e
parent3f818ac5941fdb483db9385b49523bfb86bba24a (diff)
downloadrockbox-a1eb3d93f62a0eea03fddc4746311d6207d49ba0.tar.gz
rockbox-a1eb3d93f62a0eea03fddc4746311d6207d49ba0.zip
Feature conditional compilation policy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5939 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index 7f833c3ac9..fc8b9e5728 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -1,4 +1,4 @@
1/*************************************************************************** 1e/***************************************************************************
2 * __________ __ ___. 2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
@@ -207,7 +207,7 @@ void switch_thread(void)
207 207
208 /* Check if the current thread stack is overflown */ 208 /* Check if the current thread stack is overflown */
209 stackptr = thread_stack[current]; 209 stackptr = thread_stack[current];
210#if ! (defined(IRIVER_H100) || defined (ARCHOS_GMINI120)) 210#if ! (defined(IRIVER_H100) || (CONFIG_CPU == TCC730))
211 if(stackptr[0] != DEADBEEF) 211 if(stackptr[0] != DEADBEEF)
212 panicf("Stkov %s", thread_name[current]); 212 panicf("Stkov %s", thread_name[current]);
213#endif 213#endif