Skip to content
Snippets Groups Projects
Commit 763eb1f1 authored by Jonathan Wakely's avatar Jonathan Wakely
Browse files

libstdc++: Add missing return for atomic timed wait [PR102074]


This adds a missing return statement to the non-futex wait-until
operation.

Signed-off-by: default avatarJonathan Wakely <jwakely@redhat.com>

libstdc++-v3/ChangeLog:

	PR libstdc++/102074
	* include/bits/atomic_timed_wait.h (__timed_waiter_pool)
	[!_GLIBCXX_HAVE_PLATFORM_TIMED_WAIT]: Add missing return.
parent feec7ef6
No related branches found
No related tags found
No related merge requests found
...@@ -213,6 +213,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -213,6 +213,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
lock_guard<mutex> __l(_M_mtx); lock_guard<mutex> __l(_M_mtx);
return __cond_wait_until(_M_cv, _M_mtx, __atime); return __cond_wait_until(_M_cv, _M_mtx, __atime);
} }
else
return true;
#endif // _GLIBCXX_HAVE_PLATFORM_TIMED_WAIT #endif // _GLIBCXX_HAVE_PLATFORM_TIMED_WAIT
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment