diff options
Diffstat (limited to 'src/lib/thread.c')
-rw-r--r-- | src/lib/thread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/thread.c b/src/lib/thread.c index 30dd5e5219..57a0f8c185 100644 --- a/src/lib/thread.c +++ b/src/lib/thread.c @@ -226,7 +226,8 @@ static void idle_thread_init(void) /* Don't inline this function so the timeout_callback won't have its storage * space on the stack cleaned up before the call to schedule(). */ static int __attribute__((noinline)) -thread_yield_timed_callback(struct timeout_callback *tocb, unsigned int microsecs) +thread_yield_timed_callback(struct timeout_callback *tocb, + unsigned int microsecs) { tocb->priv = current_thread(); tocb->callback = thread_resume_from_timeout; |