Changeset 221bd65 in rtems
- Timestamp:
- 08/12/96 20:00:02 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 702a31c
- Parents:
- 5f08fd6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx07/init.c
r5f08fd6 r221bd65 33 33 #endif 34 34 } 35 36 extern rtems_configuration_table BSP_Configuration; 35 37 36 38 void *POSIX_Init( … … 102 104 assert( status == EINVAL ); 103 105 106 attr.stacksize = BSP_Configuration.work_space_size; 107 puts( "Init: pthread_create - EINVAL (stacksize too large)" ); 108 status = pthread_create( &Task_id, &attr, Task_1, NULL ); 109 assert( status == EINVAL ); 110 104 111 status = pthread_attr_init( &attr ); 105 112 assert( !status ); -
testsuites/psxtests/psx07/init.c
r5f08fd6 r221bd65 33 33 #endif 34 34 } 35 36 extern rtems_configuration_table BSP_Configuration; 35 37 36 38 void *POSIX_Init( … … 102 104 assert( status == EINVAL ); 103 105 106 attr.stacksize = BSP_Configuration.work_space_size; 107 puts( "Init: pthread_create - EINVAL (stacksize too large)" ); 108 status = pthread_create( &Task_id, &attr, Task_1, NULL ); 109 assert( status == EINVAL ); 110 104 111 status = pthread_attr_init( &attr ); 105 112 assert( !status );
Note: See TracChangeset
for help on using the changeset viewer.