From 39b3d876b61991f92de9c58b41ec284d28d7fb2d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 27 Apr 1998 13:44:54 +0000 Subject: [PATCH] Reset the pthread attributes structure so the proper error would be generated. --- c/src/tests/psxtests/psx07/init.c | 6 +++++- testsuites/psxtests/psx07/init.c | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/c/src/tests/psxtests/psx07/init.c b/c/src/tests/psxtests/psx07/init.c index 19a04cfe93..f4da65213a 100644 --- a/c/src/tests/psxtests/psx07/init.c +++ b/c/src/tests/psxtests/psx07/init.c @@ -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 ); diff --git a/testsuites/psxtests/psx07/init.c b/testsuites/psxtests/psx07/init.c index 19a04cfe93..f4da65213a 100644 --- a/testsuites/psxtests/psx07/init.c +++ b/testsuites/psxtests/psx07/init.c @@ -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 );