1
0
Fork 0
forked from len0rd/rockbox

Fix core_sleep for targets that have not implemented it yet

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15159 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Karl Kurbjun 2007-10-17 03:44:13 +00:00
parent 45d4345405
commit 1cc852c346

View file

@ -606,7 +606,7 @@ static inline void core_sleep(struct thread_entry **waking)
: : "r"(waking) : "r0", "r1", "r2", "r3");
}
#else
static inline void core_sleep(void)
static inline void core_sleep(struct thread_entry **waking)
{
}