public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "lyricconch at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/53504] New: configure script of platform TLS support.
Date: Mon, 28 May 2012 06:42:00 -0000	[thread overview]
Message-ID: <bug-53504-4@http.gcc.gnu.org/bugzilla/> (raw)

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53504

             Bug #: 53504
           Summary: configure script of platform TLS support.
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: lyricconch@gmail.com


file: gcc-4.70/stdc++v3/configure
line: 51506

#include <pthread.h>
        __thread int a;
        static int *volatile a_in_other_thread;
        static void *
        thread_func (void *arg)
        {
          a_in_other_thread = &a;
          return (void *)0;
        }
int
main ()
{
pthread_t thread;
        void *thread_retval;
        int *volatile a_in_main_thread;
        a_in_main_thread = &a;
        if (pthread_create (&thread, (pthread_attr_t *)0,
                    thread_func, (void *)0))
          return 0;
        if (pthread_join (thread, &thread_retval))
          return 0;
        return (a_in_other_thread == a_in_main_thread);
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
  gcc_cv_have_tls=yes
else
  gcc_cv_have_tls=no
fi

1. if we have TLS support, &a will be difference value in main() and
hread_func(), which means (a_in_other_thread == a_in_main_thread) eval to
false.
so, with TLS support => program exit with 0.

2. if "pthread_create" or "pthread_join" fails, program also exit with 0. "no
threads, no TLS". 
so, without TLS support => program exit with 0.

whatever ac_fn_c_try_run get, this can not be right.


             reply	other threads:[~2012-05-28  5:11 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-28  6:42 lyricconch at gmail dot com [this message]
2021-08-31 16:11 ` [Bug bootstrap/53504] " redi at gcc dot gnu.org
2021-08-31 16:23 ` redi at gcc dot gnu.org

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=bug-53504-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).