public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-7778] libstdc++: Disable atomic wait for freestanding [PR105021]
@ 2022-03-23 10:11 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2022-03-23 10:11 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:5bf59b004808abf6acbfe5ef54a0f9216b8dce22

commit r12-7778-g5bf59b004808abf6acbfe5ef54a0f9216b8dce22
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Tue Mar 22 21:17:01 2022 +0000

    libstdc++: Disable atomic wait for freestanding [PR105021]
    
    We use either condition variables or futexes to implement atomic waits,
    so we can't do it in freestanding. This is non-conforming, so should be
    revisited later, probably by making freestanding atomic waiting
    operations spin without ever blocking.
    
    Reviewed-by: Thomas Rodgers <trodgers@redhat.com>
    
    libstdc++-v3/ChangeLog:
    
            PR libstdc++/105021
            * include/bits/atomic_base.h [!_GLIBCXX_HOSTED]: Do not include
            <bits/atomic_wait.h> for freestanding.

Diff:
---
 libstdc++-v3/include/bits/atomic_base.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/bits/atomic_base.h b/libstdc++-v3/include/bits/atomic_base.h
index d86766cf39b..2cad8486c69 100644
--- a/libstdc++-v3/include/bits/atomic_base.h
+++ b/libstdc++-v3/include/bits/atomic_base.h
@@ -37,7 +37,7 @@
 #include <bits/atomic_lockfree_defines.h>
 #include <bits/move.h>
 
-#if __cplusplus > 201703L
+#if __cplusplus > 201703L && _GLIBCXX_HOSTED
 #include <bits/atomic_wait.h>
 #endif


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-03-23 10:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-23 10:11 [gcc r12-7778] libstdc++: Disable atomic wait for freestanding [PR105021] Jonathan Wakely

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).