From 0cb07e3476d9408d0935253f9f26c0a8ddc28401 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Tue, 9 Jul 2013 21:46:01 -0600 Subject: include: Fix spelling Change-Id: Iadc813bc8208278996b2b1aa20cfb156ec06fac9 Signed-off-by: Martin Roth Reviewed-on: http://review.coreboot.org/3755 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/include/thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/thread.h') diff --git a/src/include/thread.h b/src/include/thread.h index 148c448bb2..0522337429 100644 --- a/src/include/thread.h +++ b/src/include/thread.h @@ -43,7 +43,7 @@ void threads_initialize(void); * current state in the boot state machine until it is complete. */ int thread_run(void (*func)(void *), void *arg); /* thread_run_until is the same as thread_run() except that it blocks state - * transitions from occuring in the (state, seq) pair of the boot state + * transitions from occurring in the (state, seq) pair of the boot state * machine. */ int thread_run_until(void (*func)(void *), void *arg, boot_state_t state, boot_state_sequence_t seq); @@ -52,7 +52,7 @@ int thread_run_until(void (*func)(void *), void *arg, int thread_yield_microseconds(unsigned microsecs); /* Allow and prevent thread cooperation on current running thread. By default - * all threads are marked to be cooperative. That means a thread can yeild + * all threads are marked to be cooperative. That means a thread can yield * to another thread at a pre-determined switch point. Current there is * only a single place where switching may occur: a call to udelay(). */ void thread_cooperate(void); -- cgit v1.2.3