summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-03-16 01:41:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-03-16 01:41:48 +0000
commitcda0c07ed5e5ca06fcfe2b4d9e9146a39ef67b28 (patch)
treeb189f9f6f4b05941bef852b5662fc847a2aaaaaf /c
parentUse proper include for libio.h. (diff)
downloadrtems-cda0c07ed5e5ca06fcfe2b4d9e9146a39ef67b28.tar.bz2
Commented out test case that no long works since addition of POSIX timers.
Diffstat (limited to '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 )