diff options
-rw-r--r-- | src/lib/thread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/thread.c b/src/lib/thread.c index da6189d6f1..a07539415f 100644 --- a/src/lib/thread.c +++ b/src/lib/thread.c @@ -284,14 +284,14 @@ int thread_run(struct thread_handle *handle, enum cb_err (*func)(void *), void * if (!thread_can_yield(current)) { printk(BIOS_ERR, - "thread_run() called from non-yielding context!\n"); + "ERROR: thread_run() called from non-yielding context!\n"); return -1; } t = get_free_thread(); if (t == NULL) { - printk(BIOS_ERR, "thread_run() No more threads!\n"); + printk(BIOS_ERR, "ERROR: thread_run() No more threads!\n"); return -1; } @@ -319,14 +319,14 @@ int thread_run_until(struct thread_handle *handle, enum cb_err (*func)(void *), if (!thread_can_yield(current)) { printk(BIOS_ERR, - "thread_run() called from non-yielding context!\n"); + "ERROR: thread_run() called from non-yielding context!\n"); return -1; } t = get_free_thread(); if (t == NULL) { - printk(BIOS_ERR, "thread_run() No more threads!\n"); + printk(BIOS_ERR, "ERROR: thread_run() No more threads!\n"); return -1; } |