summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-10 07:11:29 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-10 07:11:29 +0200
commit8c5267a268ae8ce599e61d0e1bdff585e26187c5 (patch)
treec00239d975a66c59b49c7515c76db71692c04dee /testsuites
parentposix: Remove rtems_pthread_attribute_compare() (diff)
downloadrtems-8c5267a268ae8ce599e61d0e1bdff585e26187c5.tar.bz2
posix: Simplify pthread_attr_setstack()
Simplify * pthread_attr_setstack(), and * pthread_attr_setstacksize(). Update #2514.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/psxtests/psxgetattrnp01/init.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxgetattrnp01/init.c b/testsuites/psxtests/psxgetattrnp01/init.c
index e5c3975255..2b7d699abd 100644
--- a/testsuites/psxtests/psxgetattrnp01/init.c
+++ b/testsuites/psxtests/psxgetattrnp01/init.c
@@ -47,7 +47,10 @@ static int attribute_compare(
attr1->stackaddr != attr2->stackaddr )
return 1;
- if ( attr1->stacksize != attr2->stacksize )
+ if (
+ attr1->stacksize != 0 &&
+ attr2->stacksize != 0 &&
+ attr1->stacksize != attr2->stacksize )
return 1;
if ( attr1->contentionscope != attr2->contentionscope )