Changeset 39b3d87 in rtems
- Timestamp:
- 04/27/98 13:44:54 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 9f0dfea
- Parents:
- ede7c5f
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx07/init.c
rede7c5f r39b3d87 104 104 assert( status == EINVAL ); 105 105 106 attr.stacksize = BSP_Configuration.work_space_size; 106 /* reset all the fields */ 107 status = pthread_attr_init( &attr ); 108 assert( !status ); 109 110 attr.stacksize = BSP_Configuration.work_space_size * 10; 107 111 puts( "Init: pthread_create - EAGAIN (stacksize too large)" ); 108 112 status = pthread_create( &Task_id, &attr, Task_1, NULL ); -
testsuites/psxtests/psx07/init.c
rede7c5f r39b3d87 104 104 assert( status == EINVAL ); 105 105 106 attr.stacksize = BSP_Configuration.work_space_size; 106 /* reset all the fields */ 107 status = pthread_attr_init( &attr ); 108 assert( !status ); 109 110 attr.stacksize = BSP_Configuration.work_space_size * 10; 107 111 puts( "Init: pthread_create - EAGAIN (stacksize too large)" ); 108 112 status = pthread_create( &Task_id, &attr, Task_1, NULL );
Note: See TracChangeset
for help on using the changeset viewer.