public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jonathan Wakely <jwakely@redhat.com>
To: Thomas Rodgers <rodgert@appliantology.com>
Cc: David Edelsohn <dje.gcc@gmail.com>,
	Jakub Jelinek <jakub@redhat.com>,
	gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org
Subject: Re: GCC 11.1 Release Candidate available from gcc.gnu.org
Date: Wed, 21 Apr 2021 12:38:04 +0100	[thread overview]
Message-ID: <20210421113804.GU3008@redhat.com> (raw)
In-Reply-To: <45de03629a536c0000c9b47bb79d6601@appliantology.com>

On 20/04/21 22:12 -0700, Thomas Rodgers wrote:
>@@ -86,6 +88,24 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
> 	}
>     }
> 
>+    _GLIBCXX_ALWAYS_INLINE bool
>+    _M_try_acquire() noexcept
>+    {
>+      for (;;)
>+	{
>+	  auto __err = sem_trywait(&_M_semaphore);
>+	  if (__err && (errno == EINTR))
>+	    continue;
>+	  else if (__err && (errno == EAGAIN))
>+	    return false;
>+	  else if (__err)
>+	    std::terminate();
>+	  else
>+	    break;
>+	}
>+      return true;
>+    }
>+
>     _GLIBCXX_ALWAYS_INLINE void
>     _M_release(std::ptrdiff_t __update) noexcept
>     {

Please just commit this part to trunk and gcc-11, not the macro
renaming (as that's been fixed by Jakub already).



  parent reply	other threads:[~2021-04-21 11:39 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20210420152439.GR1179226@tucnak>
     [not found] ` <CAGWvnykjEBYoK=poyfSWy84Eix__GJ-NJ50QSc99ji-UM8n+Wg@mail.gmail.com>
     [not found]   ` <6ac731c557415b46b04613d9b908df2f@appliantology.com>
     [not found]     ` <CAGWvnymcuXzvrBEm6rrTvXzRyoCYgx0vUm2nUBMWA29aQZc4uQ@mail.gmail.com>
     [not found]       ` <a69622f7cc24e6e311d5099b9899e798@appliantology.com>
     [not found]         ` <CAGWvnykWuuxtDKen5AXfX5k__UsChmvJAhp5-vC6O5LFnhqjBQ@mail.gmail.com>
     [not found]           ` <CAGWvnykNJ0VqcMcFfBrQUTTFOk_J2PVj2Ci5jNZu55sbnc7Y9w@mail.gmail.com>
     [not found]             ` <45de03629a536c0000c9b47bb79d6601@appliantology.com>
2021-04-21  8:56               ` Jakub Jelinek
2021-04-21  9:05                 ` Jonathan Wakely
2021-04-21 11:38               ` Jonathan Wakely [this message]
2021-04-21 12:12                 ` Jonathan Wakely
2021-04-21 14:16                   ` Thomas Rodgers
2021-04-21 14:23                   ` David Edelsohn
2021-04-21 14:30                   ` Jonathan Wakely
2021-04-22 12:27                     ` Jonathan Wakely
2021-04-22 12:30                       ` Jakub Jelinek

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=20210421113804.GU3008@redhat.com \
    --to=jwakely@redhat.com \
    --cc=dje.gcc@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    --cc=libstdc++@gcc.gnu.org \
    --cc=rodgert@appliantology.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).