summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/pthreadkill.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/src/pthreadkill.c')
-rw-r--r--c/src/exec/posix/src/pthreadkill.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/c/src/exec/posix/src/pthreadkill.c b/c/src/exec/posix/src/pthreadkill.c
index 652b3554a1..85fe4a35bb 100644
--- a/c/src/exec/posix/src/pthreadkill.c
+++ b/c/src/exec/posix/src/pthreadkill.c
@@ -34,12 +34,10 @@ int pthread_kill(
if ( sig && !is_valid_signo(sig) )
set_errno_and_return_minus_one( EINVAL );
+/* commented out when posix timers added
if ( _POSIX_signals_Vectors[ sig ].sa_flags == SA_SIGINFO )
set_errno_and_return_minus_one( ENOSYS );
-
- /*
- * RTEMS does not support sending a siginfo signal to a specific thread.
- */
+*/
the_thread = _POSIX_Threads_Get( thread, &location );
switch ( location ) {