Changeset 524767cb in rtems
- Timestamp:
- 10/25/99 14:10:38 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 48296038
- Parents:
- c774a07e
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx05/init.c
rc774a07e r524767cb 284 284 assert( !status ); 285 285 286 puts( "Init: pthread_mutex_init - EBUSY (attempt to initialize an existing mutex)" ); 286 /* 287 * This is not required to be an error and when it is, there are 288 * behavioral conflicts with other implementations. 289 */ 290 puts( "Init: pthread_mutex_init - EBUSY (reinitialize an existing mutex) - skipped" ); 291 292 #if 0 287 293 status = pthread_mutex_init( &Mutex_id, &attr ); 288 294 if ( !status ) 289 295 printf( "status = %d\n", status ); 290 296 assert( status == EBUSY ); 297 #endif 291 298 292 299 puts( "Init: pthread_mutex_trylock - EINVAL (illegal ID)" ); -
testsuites/psxtests/psx05/init.c
rc774a07e r524767cb 284 284 assert( !status ); 285 285 286 puts( "Init: pthread_mutex_init - EBUSY (attempt to initialize an existing mutex)" ); 286 /* 287 * This is not required to be an error and when it is, there are 288 * behavioral conflicts with other implementations. 289 */ 290 puts( "Init: pthread_mutex_init - EBUSY (reinitialize an existing mutex) - skipped" ); 291 292 #if 0 287 293 status = pthread_mutex_init( &Mutex_id, &attr ); 288 294 if ( !status ) 289 295 printf( "status = %d\n", status ); 290 296 assert( status == EBUSY ); 297 #endif 291 298 292 299 puts( "Init: pthread_mutex_trylock - EINVAL (illegal ID)" );
Note: See TracChangeset
for help on using the changeset viewer.