diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2008-01-19 13:47:26 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2008-01-19 13:47:26 +0000 |
commit | 608c547aa1812de4d9e41ad34eb686c45d404e9d (patch) | |
tree | 63947f7120a9fe82ed0635eaf1e69833dbc5640f /firmware/thread.c | |
parent | 468434811d3ed16e51c835065fbe2453a993f7e1 (diff) |
Fix warnings. Remove a now unneeded parameter macro from run_blocking_ops.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16109 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/thread.c')
-rw-r--r-- | firmware/thread.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/firmware/thread.c b/firmware/thread.c index 96088bec72..ca6c64039e 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -144,9 +144,11 @@ static void core_schedule_wakeup(struct thread_entry *thread) static inline void core_perform_wakeup(IF_COP_VOID(unsigned int core)) __attribute__((always_inline)); +#if NUM_CORES > 1 static inline void run_blocking_ops( - IF_COP_VOID(unsigned int core, struct thread_entry *thread)) + unsigned int core, struct thread_entry *thread) __attribute__((always_inline)); +#endif static void thread_stkov(struct thread_entry *thread) __attribute__((noinline)); @@ -1361,7 +1363,7 @@ static void check_tmo_threads(void) */ #if NUM_CORES > 1 static inline void run_blocking_ops( - IF_COP_VOID(unsigned int core, struct thread_entry *thread)) + unsigned int core, struct thread_entry *thread) { struct thread_blk_ops *ops = &cores[IF_COP_CORE(core)].blk_ops; const unsigned flags = ops->flags; @@ -1600,7 +1602,7 @@ void switch_thread(struct thread_entry *old) #if NUM_CORES > 1 /* Run any blocking operations requested before switching/sleeping */ - run_blocking_ops(IF_COP(core, old)); + run_blocking_ops(core, old); #endif /* Go through the list of sleeping task to check if we need to wake up |