Changeset 851b18d in rtems
- Timestamp:
- 08/15/96 18:59:34 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7fb19bb
- Parents:
- fdf6917
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx07/init.c
rfdf6917 r851b18d 100 100 attr.stacksize = 0; 101 101 102 puts( "Init: pthread_create - E INVAL(stacksize too small)" );102 puts( "Init: pthread_create - EAGAIN (stacksize too small)" ); 103 103 status = pthread_create( &Task_id, &attr, Task_1, NULL ); 104 assert( status == E INVAL);104 assert( status == EAGAIN ); 105 105 106 106 attr.stacksize = BSP_Configuration.work_space_size; -
testsuites/psxtests/psx07/init.c
rfdf6917 r851b18d 100 100 attr.stacksize = 0; 101 101 102 puts( "Init: pthread_create - E INVAL(stacksize too small)" );102 puts( "Init: pthread_create - EAGAIN (stacksize too small)" ); 103 103 status = pthread_create( &Task_id, &attr, Task_1, NULL ); 104 assert( status == E INVAL);104 assert( status == EAGAIN ); 105 105 106 106 attr.stacksize = BSP_Configuration.work_space_size;
Note: See TracChangeset
for help on using the changeset viewer.