]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Add missing headers for errno and std::terminate
authorJonathan Wakely <jwakely@redhat.com>
Mon, 26 Apr 2021 11:28:37 +0000 (12:28 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Mon, 26 Apr 2021 11:30:26 +0000 (12:30 +0100)
libstdc++-v3/ChangeLog:

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

libstdc++-v3/include/bits/semaphore_base.h

index 4948f0fd0bc0e433716796d589d0eb1d5cbf766f..9a55978068fc2d7f7632d46c8cfef1c440a8e5cc 100644 (file)
 #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>