summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx07/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-27 13:44:54 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-27 13:44:54 +0000
commit39b3d876b61991f92de9c58b41ec284d28d7fb2d (patch)
tree9e51c310469a3d9ed214c7c69f01e894f2abf87a /testsuites/psxtests/psx07/init.c
parentregenerated (diff)
downloadrtems-39b3d876b61991f92de9c58b41ec284d28d7fb2d.tar.bz2
Reset the pthread attributes structure so the proper error would be
generated.
Diffstat (limited to 'testsuites/psxtests/psx07/init.c')
-rw-r--r--testsuites/psxtests/psx07/init.c6
1 files changed, 5 insertions, 1 deletions
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 );