summaryrefslogtreecommitdiff
path: root/lib/libc_r/uthread/uthread_kill.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc_r/uthread/uthread_kill.c')
-rw-r--r--lib/libc_r/uthread/uthread_kill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc_r/uthread/uthread_kill.c b/lib/libc_r/uthread/uthread_kill.c
index 5c3f98d441b..7572c05faff 100644
--- a/lib/libc_r/uthread/uthread_kill.c
+++ b/lib/libc_r/uthread/uthread_kill.c
@@ -91,10 +91,10 @@ pthread_kill(pthread_t pthread, int sig)
(_thread_sigact[sig - 1].sa_handler != SIG_IGN)) {
/* Flag the operation as interrupted: */
pthread->interrupted = 1;
-
+
/* Change the state of the thread to run: */
PTHREAD_NEW_STATE(pthread,PS_RUNNING);
-
+
/* Return the signal number: */
pthread->signo = sig;
} else {