mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 06:08:20 +00:00
Reset the pthread attributes structure so the proper error would be
generated.
This commit is contained in:
@@ -103,7 +103,11 @@ void *POSIX_Init(
|
||||
status = pthread_create( &Task_id, &attr, Task_1, NULL );
|
||||
assert( status == EINVAL );
|
||||
|
||||
attr.stacksize = BSP_Configuration.work_space_size;
|
||||
/* reset all the fields */
|
||||
status = pthread_attr_init( &attr );
|
||||
assert( !status );
|
||||
|
||||
attr.stacksize = BSP_Configuration.work_space_size * 10;
|
||||
puts( "Init: pthread_create - EAGAIN (stacksize too large)" );
|
||||
status = pthread_create( &Task_id, &attr, Task_1, NULL );
|
||||
assert( status == EAGAIN );
|
||||
|
||||
Reference in New Issue
Block a user