Commented out test case that no long works since addition of POSIX timers.

This commit is contained in:
Joel Sherrill
1999-03-16 01:41:48 +00:00
parent 23c4bbf58a
commit cda0c07ed5
2 changed files with 20 additions and 10 deletions

View File

@@ -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 )