Changeset fdf6917 in rtems
- Timestamp:
- 08/15/96 18:59:00 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 851b18d
- Parents:
- f3e19146
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx01/init.c
rf3e19146 rfdf6917 202 202 /* too may threads error */ 203 203 204 puts( "Init: pthread_create - E INVAL(too many threads)" );204 puts( "Init: pthread_create - EAGAIN (too many threads)" ); 205 205 status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL ); 206 assert( status == E INVAL);206 assert( status == EAGAIN ); 207 207 208 208 puts( "Init: sched_yield to Task_1" ); -
testsuites/psxtests/psx01/init.c
rf3e19146 rfdf6917 202 202 /* too may threads error */ 203 203 204 puts( "Init: pthread_create - E INVAL(too many threads)" );204 puts( "Init: pthread_create - EAGAIN (too many threads)" ); 205 205 status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL ); 206 assert( status == E INVAL);206 assert( status == EAGAIN ); 207 207 208 208 puts( "Init: sched_yield to Task_1" );
Note: See TracChangeset
for help on using the changeset viewer.