summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psx04/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psx04/init.c')
-rw-r--r--c/src/tests/psxtests/psx04/init.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/c/src/tests/psxtests/psx04/init.c b/c/src/tests/psxtests/psx04/init.c
index a1dfbd5ac5..6bc79234f3 100644
--- a/c/src/tests/psxtests/psx04/init.c
+++ b/c/src/tests/psxtests/psx04/init.c
@@ -516,11 +516,16 @@ void *POSIX_Init(
assert( errno == EINVAL );
puts( "Init: pthread_kill - EINVAL (sig invalid)" );
- status = pthread_kill( 0, SIGUSR1 );
- if ( status != -1 )
- printf( "status = %d\n", status );
- assert( errno == ENOSYS );
- puts( "Init: pthread_kill - ENOSYS (signal SA_SIGINFO)" );
+/*
+ * This is now implemented. We should delete this but for now
+ * we will just comment this out.
+ *
+ * status = pthread_kill( 0, SIGUSR1 );
+ * if ( status != -1 )
+ * printf( "status = %d\n", status );
+ * assert( errno == ENOSYS );
+ * puts( "Init: pthread_kill - ENOSYS (signal SA_SIGINFO)" );
+ */
status = pthread_kill( 0, SIGUSR2 );
if ( status != -1 )