diff options
Diffstat (limited to 'src/lib/thread.c')
-rw-r--r-- | src/lib/thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/thread.c b/src/lib/thread.c index 53ffb92c59..703034b8a8 100644 --- a/src/lib/thread.c +++ b/src/lib/thread.c @@ -186,8 +186,8 @@ static void asmlinkage call_wrapper_block_state(void *arg) /* Prepare a thread so that it starts by executing thread_entry(thread_arg). * Within thread_entry() it will call func(arg). */ static void prepare_thread(struct thread *t, void *func, void *arg, - asmlinkage void(*thread_entry)(void *), - void *thread_arg) + asmlinkage void(*thread_entry)(void *), + void *thread_arg) { /* Stash the function and argument to run. */ t->entry = func; @@ -305,7 +305,7 @@ int thread_run(void (*func)(void *), void *arg) } int thread_run_until(void (*func)(void *), void *arg, - boot_state_t state, boot_state_sequence_t seq) + boot_state_t state, boot_state_sequence_t seq) { struct thread *current; struct thread *t; |