1
0
Fork 0
forked from len0rd/rockbox

Feature conditional compilation policy

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5939 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jean-Philippe Bernardy 2005-02-13 17:07:40 +00:00
parent 3f818ac594
commit a1eb3d93f6

View file

@ -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