Changeset cda0c07 in rtems for testsuites/psxtests/psx04/init.c
- Timestamp:
- 03/16/99 01:41:48 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 504a8c9d
- Parents:
- 23c4bbf5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/psxtests/psx04/init.c
r23c4bbf5 rcda0c07 517 517 puts( "Init: pthread_kill - EINVAL (sig invalid)" ); 518 518 519 status = pthread_kill( 0, SIGUSR1 ); 520 if ( status != -1 ) 521 printf( "status = %d\n", status ); 522 assert( errno == ENOSYS ); 523 puts( "Init: pthread_kill - ENOSYS (signal SA_SIGINFO)" ); 519 /* 520 * This is now implemented. We should delete this but for now 521 * we will just comment this out. 522 * 523 * status = pthread_kill( 0, SIGUSR1 ); 524 * if ( status != -1 ) 525 * printf( "status = %d\n", status ); 526 * assert( errno == ENOSYS ); 527 * puts( "Init: pthread_kill - ENOSYS (signal SA_SIGINFO)" ); 528 */ 524 529 525 530 status = pthread_kill( 0, SIGUSR2 );
Note: See TracChangeset
for help on using the changeset viewer.