From: Bian Naimeng <biannm@cn.fujitsu.com>
To: Garrett Cooper <yanegomi@gmail.com>
Cc: ltp-list@lists.sourceforge.net
Subject: Re: [LTP] [POSIX][PATCH] Remove POSIX non-compliant API pthread_getattr_np
Date: Tue, 02 Nov 2010 16:00:49 +0800 [thread overview]
Message-ID: <4CCFC531.9090509@cn.fujitsu.com> (raw)
In-Reply-To: <4CCFC177.8070102@cn.fujitsu.com>
Sorry to make a noise, please ignore this patch.
However, maybe PTS_UNRESOLVED is better if "ssize != stacksize" at the child thread.
Bian Naimeng wrote:
> The pthread_getattr_np is not a POSIX compliant API, it's unnecessary to test it.
>
> Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
>
> ---
> .../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);
--
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
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
next prev parent reply other threads:[~2010-11-02 8:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-02 7:44 [LTP] [POSIX][PATCH] Remove POSIX non-compliant API pthread_getattr_np Bian Naimeng
2010-11-02 8:00 ` Bian Naimeng [this message]
2010-11-08 21:25 ` Garrett Cooper
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4CCFC531.9090509@cn.fujitsu.com \
--to=biannm@cn.fujitsu.com \
--cc=ltp-list@lists.sourceforge.net \
--cc=yanegomi@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox