summaryrefslogtreecommitdiff
path: root/firmware/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/thread.c')
-rw-r--r--firmware/thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index bfbaf462a6..ea73150853 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -967,7 +967,7 @@ void check_tmo_threads(void)
967 * life again. */ 967 * life again. */
968 if (state == STATE_BLOCKED_W_TMO) 968 if (state == STATE_BLOCKED_W_TMO)
969 { 969 {
970#if NUM_CORES > 1 970#ifdef HAVE_CORELOCK_OBJECT
971 /* Lock the waiting thread's kernel object */ 971 /* Lock the waiting thread's kernel object */
972 struct corelock *ocl = curr->obj_cl; 972 struct corelock *ocl = curr->obj_cl;
973 973
@@ -1782,7 +1782,7 @@ void thread_exit(void)
1782 */ 1782 */
1783void remove_thread(unsigned int thread_id) 1783void remove_thread(unsigned int thread_id)
1784{ 1784{
1785#if NUM_CORES > 1 1785#ifdef HAVE_CORELOCK_OBJECT
1786 /* core is not constant here because of core switching */ 1786 /* core is not constant here because of core switching */
1787 unsigned int core = CURRENT_CORE; 1787 unsigned int core = CURRENT_CORE;
1788 unsigned int old_core = NUM_CORES; 1788 unsigned int old_core = NUM_CORES;