From 39b3d876b61991f92de9c58b41ec284d28d7fb2d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 27 Apr 1998 13:44:54 +0000 Subject: Reset the pthread attributes structure so the proper error would be generated. --- testsuites/psxtests/psx07/init.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'testsuites/psxtests/psx07/init.c') 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 ); -- cgit v1.2.3