libstdc++: Add missing return and use reserved name
authorJonathan Wakely <jwakely@redhat.com>
Mon, 15 Feb 2021 14:00:36 +0000 (14:00 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Mon, 15 Feb 2021 15:52:25 +0000 (15:52 +0000)
The once_flag::_M_activate() function is only ever called immediately
after a call to once_flag::_M_passive(), and so in the non-gthreads case
it is impossible for _M_passive() to be true in the body of
_M_activate(). Add a check for it anyway, to avoid warnings about
missing return.

Also replace a non-reserved name with a reserved one.

libstdc++-v3/ChangeLog:

* include/std/mutex (once_flag::_M_activate()): Add explicit
return statement for passive case.
(once_flag::_M_finish(bool)): Use reserved name for parameter.

libstdc++-v3/include/std/mutex

index 25e580cf0fc4e492663a8bcdb505eb9b1cc14eb7..f96c48e88ecf681d74eab13f87c14d407d5b702f 100644 (file)
@@ -706,6 +706,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     bool _M_activate();
 
     // Must be called to complete an active execution.
+    // The argument is true if the active execution was a returning execution,
+    // false if it was an exceptional execution.
     void _M_finish(bool __returning) noexcept;
 
     // RAII helper to call _M_finish.
@@ -742,18 +744,20 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   inline bool
   once_flag::_M_activate()
   {
-    if (_M_once == _Bits::_Init)
+    if (_M_once == _Bits::_Init) [[__likely__]]
       {
        _M_once = _Bits::_Active;
        return true;
       }
-    else if (!_M_passive())
+    else if (_M_passive()) // Caller should have checked this already.
+      return false;
+    else
       __throw_system_error(EDEADLK);
   }
 
   inline void
-  once_flag::_M_finish(bool returning) noexcept
-  { _M_once = returning ? _Bits::_Done : _Bits::_Init; }
+  once_flag::_M_finish(bool __returning) noexcept
+  { _M_once = __returning ? _Bits::_Done : _Bits::_Init; }
 
 #elif defined _GLIBCXX_HAVE_LINUX_FUTEX