summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadkill.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/posix/src/pthreadkill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/pthreadkill.c b/cpukit/posix/src/pthreadkill.c
index eb027461cb..1da8fb6ca1 100644
--- a/cpukit/posix/src/pthreadkill.c
+++ b/cpukit/posix/src/pthreadkill.c
@@ -39,7 +39,7 @@ int pthread_kill( pthread_t thread, int sig )
return EINVAL;
}
- the_thread = _Thread_Get_interrupt_disable( thread, &lock_context );
+ the_thread = _Thread_Get( thread, &lock_context );
if ( the_thread == NULL ) {
return ESRCH;