The pthread_getattr_np is not a POSIX compliant API, it's unnecessary to test it.
Signed-off-by: Bian Naimeng <[email protected]> --- .../interfaces/pthread_attr_setstacksize/2-1.c | 17 ++++------------- 1 files changed, 4 insertions(+), 13 deletions(-) diff --git a/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/2-1.c b/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/2-1.c index 668fd96..c91c946 100644 --- a/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/2-1.c +++ b/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/2-1.c @@ -14,7 +14,6 @@ * 4. In the created thread, read stacksize */ -/* For pthread_getattr_np(3) -- not a POSIX compliant API */ #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif @@ -35,21 +34,13 @@ size_t stack_size; void *stack_addr; -void *thread_func() +void *thread_func(void *arg) { - pthread_attr_t attr; + pthread_attr_t *pattr = (pthread_attr_t *)arg; size_t ssize; int rc; - if ((rc = pthread_getattr_np(pthread_self(), &attr)) != 0) { - printf(ERROR_PREFIX "pthread_getattr_np: %s\n", strerror(rc)); - exit(PTS_FAIL); - } - if ((rc = pthread_attr_init(&attr)) != 0) { - printf(ERROR_PREFIX "pthread_attr_init: %s\n", strerror(rc)); - exit(PTS_FAIL); - } - if ((rc = pthread_attr_getstacksize(&attr, &ssize)) != 0) { + if ((rc = pthread_attr_getstacksize(pattr, &ssize)) != 0) { printf(ERROR_PREFIX "pthread_attr_getstacksize: %s\n", strerror(rc)); exit(PTS_FAIL); @@ -106,7 +97,7 @@ int main() exit(PTS_UNRESOLVED); } - rc = pthread_create(&new_th, &attr, thread_func, NULL); + rc = pthread_create(&new_th, &attr, thread_func, &attr); if (rc != 0) { printf(ERROR_PREFIX "pthread_create: %s\n", strerror(rc)); exit(PTS_FAIL); -- 1.7.0.4 -- Regards Bian Naimeng ------------------------------------------------------------------------------ Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create new apps & games for the Nokia N8 for consumers in U.S. and Canada $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store http://p.sf.net/sfu/nokia-dev2dev _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
