diff mbox series

[committed] libstdc++: Add missing headers for errno and std::terminate

Message ID YIal2/Kj7EhtYX9O@redhat.com
State New
Headers show
Series [committed] libstdc++: Add missing headers for errno and std::terminate | expand

Commit Message

Jonathan Wakely April 26, 2021, 11:36 a.m. UTC
libstdc++-v3/ChangeLog:

	* include/bits/semaphore_base.h: Include <exception> and <errno.h>.

Tested x86_64-linux. Committed to trunk.

This should be backported to gcc-11 but it can wait until after the
11.1 release.

It affects non-linux targets which have POSIX semaphores. For linux
targets the <cerrno> header gets included in <bits/atomic_wait.h> but
for non-linux it doesn't. The testsuite is not picking this up,
probably because the testsuite is cursed by PCH by default.
commit a38b1a59f8eb6f41a885f8a7c8838378be717b02
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Mon Apr 26 12:28:37 2021

    libstdc++: Add missing headers for errno and std::terminate
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/semaphore_base.h: Include <exception> and <errno.h>.
diff mbox series

Patch

diff --git a/libstdc++-v3/include/bits/semaphore_base.h b/libstdc++-v3/include/bits/semaphore_base.h
index 4948f0fd0bc..9a55978068f 100644
--- a/libstdc++-v3/include/bits/semaphore_base.h
+++ b/libstdc++-v3/include/bits/semaphore_base.h
@@ -39,8 +39,10 @@ 
 #endif // __cpp_lib_atomic_wait
 
 #ifdef _GLIBCXX_HAVE_POSIX_SEMAPHORE
-# include <limits.h>
-# include <semaphore.h>
+# include <exception>	// std::terminate
+# include <cerrno>	// errno, EINTR, EAGAIN etc.
+# include <limits.h>	// SEM_VALUE_MAX
+# include <semaphore.h>	// sem_t, sem_init, sem_wait, sem_post etc.
 #endif
 
 #include <chrono>