mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-22 12:00:03 -05:00
In r15-3714-gd3a7302ec5985a I added -Wsystem-headers to the libstdc++ build flags to help catch problems in the library. This patch takes a different approach, of disabling the #pragma system_header unless _GLIBCXX_SYSHDR is defined. As a result, the testsuites will treat them as non-system-headers to get better warning coverage during regression testing of both gcc and libstdc++, not just when building the library. My rationale for the #ifdef instead of just removing the #pragma is the three G++ tests that want to test libstdc++ system header behavior, so we need a way to select it. This doesn't affect installed libraries, as they get their system-header status from the lookup path. But testsuite_flags --build-includes gives -I directives rather than -isystem. This patch doesn't change the headers in config/ because I'm not compiling with most of them, so won't see any warnings that need fixing. Adjusting them could happen later, or we can not bother. libstdc++-v3/ChangeLog: * acinclude.m4 (WARN_FLAGS): Remove -Wsystem-headers. * configure: Regenerate. * include/bits/algorithmfwd.h: #ifdef out #pragma GCC system_header. * include/bits/atomic_base.h * include/bits/atomic_futex.h * include/bits/atomic_timed_wait.h * include/bits/atomic_wait.h * include/bits/basic_ios.h * include/bits/basic_string.h * include/bits/boost_concept_check.h * include/bits/char_traits.h * include/bits/charconv.h * include/bits/chrono.h * include/bits/chrono_io.h * include/bits/codecvt.h * include/bits/concept_check.h * include/bits/cpp_type_traits.h * include/bits/elements_of.h * include/bits/enable_special_members.h * include/bits/erase_if.h * include/bits/forward_list.h * include/bits/functional_hash.h * include/bits/gslice.h * include/bits/gslice_array.h * include/bits/hashtable.h * include/bits/indirect_array.h * include/bits/invoke.h * include/bits/ios_base.h * include/bits/iterator_concepts.h * include/bits/locale_classes.h * include/bits/locale_facets.h * include/bits/locale_facets_nonio.h * include/bits/localefwd.h * include/bits/mask_array.h * include/bits/max_size_type.h * include/bits/memory_resource.h * include/bits/memoryfwd.h * include/bits/move_only_function.h * include/bits/node_handle.h * include/bits/ostream_insert.h * include/bits/out_ptr.h * include/bits/parse_numbers.h * include/bits/postypes.h * include/bits/quoted_string.h * include/bits/range_access.h * include/bits/ranges_base.h * include/bits/refwrap.h * include/bits/sat_arith.h * include/bits/semaphore_base.h * include/bits/slice_array.h * include/bits/std_abs.h * include/bits/std_function.h * include/bits/std_mutex.h * include/bits/std_thread.h * include/bits/stl_iterator_base_funcs.h * include/bits/stl_iterator_base_types.h * include/bits/stl_tree.h * include/bits/stream_iterator.h * include/bits/streambuf_iterator.h * include/bits/stringfwd.h * include/bits/this_thread_sleep.h * include/bits/unique_lock.h * include/bits/uses_allocator_args.h * include/bits/utility.h * include/bits/valarray_after.h * include/bits/valarray_array.h * include/bits/valarray_before.h * include/bits/version.h * include/c_compatibility/fenv.h * include/c_compatibility/inttypes.h * include/c_compatibility/stdint.h * include/decimal/decimal.h * include/experimental/bits/net.h * include/experimental/bits/shared_ptr.h * include/ext/aligned_buffer.h * include/ext/alloc_traits.h * include/ext/atomicity.h * include/ext/concurrence.h * include/ext/numeric_traits.h * include/ext/pod_char_traits.h * include/ext/pointer.h * include/ext/stdio_filebuf.h * include/ext/stdio_sync_filebuf.h * include/ext/string_conversions.h * include/ext/type_traits.h * include/ext/vstring.h * include/ext/vstring_fwd.h * include/ext/vstring_util.h * include/parallel/algorithmfwd.h * include/parallel/numericfwd.h * include/tr1/functional_hash.h * include/tr1/hashtable.h * include/tr1/random.h * libsupc++/exception.h * libsupc++/hash_bytes.h * include/bits/basic_ios.tcc * include/bits/basic_string.tcc * include/bits/fstream.tcc * include/bits/istream.tcc * include/bits/locale_classes.tcc * include/bits/locale_facets.tcc * include/bits/locale_facets_nonio.tcc * include/bits/ostream.tcc * include/bits/sstream.tcc * include/bits/streambuf.tcc * include/bits/string_view.tcc * include/bits/version.tpl * include/experimental/bits/string_view.tcc * include/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp * include/ext/random.tcc * include/ext/vstring.tcc * include/tr2/bool_set.tcc * include/tr2/dynamic_bitset.tcc * include/bits/c++config * include/c/cassert * include/c/cctype * include/c/cerrno * include/c/cfloat * include/c/ciso646 * include/c/climits * include/c/clocale * include/c/cmath * include/c/csetjmp * include/c/csignal * include/c/cstdarg * include/c/cstddef * include/c/cstdio * include/c/cstdlib * include/c/cstring * include/c/ctime * include/c/cuchar * include/c/cwchar * include/c/cwctype * include/c_global/cassert * include/c_global/ccomplex * include/c_global/cctype * include/c_global/cerrno * include/c_global/cfenv * include/c_global/cfloat * include/c_global/cinttypes * include/c_global/ciso646 * include/c_global/climits * include/c_global/clocale * include/c_global/cmath * include/c_global/csetjmp * include/c_global/csignal * include/c_global/cstdalign * include/c_global/cstdarg * include/c_global/cstdbool * include/c_global/cstddef * include/c_global/cstdint * include/c_global/cstdio * include/c_global/cstdlib * include/c_global/cstring * include/c_global/ctgmath * include/c_global/ctime * include/c_global/cuchar * include/c_global/cwchar * include/c_global/cwctype * include/c_std/cassert * include/c_std/cctype * include/c_std/cerrno * include/c_std/cfloat * include/c_std/ciso646 * include/c_std/climits * include/c_std/clocale * include/c_std/cmath * include/c_std/csetjmp * include/c_std/csignal * include/c_std/cstdarg * include/c_std/cstddef * include/c_std/cstdio * include/c_std/cstdlib * include/c_std/cstring * include/c_std/ctime * include/c_std/cuchar * include/c_std/cwchar * include/c_std/cwctype * include/debug/array * include/debug/bitset * include/debug/deque * include/debug/forward_list * include/debug/list * include/debug/map * include/debug/set * include/debug/string * include/debug/unordered_map * include/debug/unordered_set * include/debug/vector * include/decimal/decimal * include/experimental/algorithm * include/experimental/any * include/experimental/array * include/experimental/buffer * include/experimental/chrono * include/experimental/contract * include/experimental/deque * include/experimental/executor * include/experimental/filesystem * include/experimental/forward_list * include/experimental/functional * include/experimental/internet * include/experimental/io_context * include/experimental/iterator * include/experimental/list * include/experimental/map * include/experimental/memory * include/experimental/memory_resource * include/experimental/net * include/experimental/netfwd * include/experimental/numeric * include/experimental/propagate_const * include/experimental/ratio * include/experimental/regex * include/experimental/scope * include/experimental/set * include/experimental/socket * include/experimental/string * include/experimental/string_view * include/experimental/synchronized_value * include/experimental/system_error * include/experimental/timer * include/experimental/tuple * include/experimental/type_traits * include/experimental/unordered_map * include/experimental/unordered_set * include/experimental/vector * include/ext/algorithm * include/ext/cmath * include/ext/functional * include/ext/iterator * include/ext/memory * include/ext/numeric * include/ext/random * include/ext/rb_tree * include/ext/rope * include/parallel/algorithm * include/std/algorithm * include/std/any * include/std/array * include/std/atomic * include/std/barrier * include/std/bit * include/std/bitset * include/std/charconv * include/std/chrono * include/std/codecvt * include/std/complex * include/std/concepts * include/std/condition_variable * include/std/coroutine * include/std/deque * include/std/execution * include/std/expected * include/std/filesystem * include/std/format * include/std/forward_list * include/std/fstream * include/std/functional * include/std/future * include/std/generator * include/std/iomanip * include/std/ios * include/std/iosfwd * include/std/iostream * include/std/istream * include/std/iterator * include/std/latch * include/std/limits * include/std/list * include/std/locale * include/std/map * include/std/memory * include/std/memory_resource * include/std/mutex * include/std/numbers * include/std/numeric * include/std/optional * include/std/ostream * include/std/print * include/std/queue * include/std/random * include/std/ranges * include/std/ratio * include/std/regex * include/std/scoped_allocator * include/std/semaphore * include/std/set * include/std/shared_mutex * include/std/span * include/std/spanstream * include/std/sstream * include/std/stack * include/std/stacktrace * include/std/stdexcept * include/std/streambuf * include/std/string * include/std/string_view * include/std/syncstream * include/std/system_error * include/std/text_encoding * include/std/thread * include/std/tuple * include/std/type_traits * include/std/typeindex * include/std/unordered_map * include/std/unordered_set * include/std/utility * include/std/valarray * include/std/variant * include/std/vector * include/std/version * include/tr1/array * include/tr1/cfenv * include/tr1/cinttypes * include/tr1/cmath * include/tr1/complex * include/tr1/cstdbool * include/tr1/cstdint * include/tr1/cstdio * include/tr1/cstdlib * include/tr1/cwchar * include/tr1/cwctype * include/tr1/functional * include/tr1/memory * include/tr1/random * include/tr1/regex * include/tr1/tuple * include/tr1/type_traits * include/tr1/unordered_map * include/tr1/unordered_set * include/tr1/utility * include/tr2/bool_set * include/tr2/dynamic_bitset * include/tr2/type_traits * libsupc++/atomic_lockfree_defines.h * libsupc++/compare * libsupc++/cxxabi.h * libsupc++/cxxabi_forced.h * libsupc++/cxxabi_init_exception.h * libsupc++/exception * libsupc++/initializer_list * libsupc++/new * libsupc++/typeinfo: Likewise. * testsuite/20_util/ratio/operations/ops_overflow_neg.cc * testsuite/23_containers/array/tuple_interface/get_neg.cc * testsuite/23_containers/vector/cons/destructible_debug_neg.cc * testsuite/24_iterators/operations/prev_neg.cc * testsuite/ext/type_traits/add_unsigned_floating_neg.cc * testsuite/ext/type_traits/add_unsigned_integer_neg.cc * testsuite/ext/type_traits/remove_unsigned_floating_neg.cc * testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Adjust line numbers. gcc/testsuite/ChangeLog * g++.dg/analyzer/fanalyzer-show-events-in-system-headers-default.C * g++.dg/analyzer/fanalyzer-show-events-in-system-headers-no.C * g++.dg/diagnostic/disable.C: #define _GLIBCXX_SYSHDR.
378 lines
9.8 KiB
C++
378 lines
9.8 KiB
C++
// <thread> -*- C++ -*-
|
|
|
|
// Copyright (C) 2008-2024 Free Software Foundation, Inc.
|
|
//
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
// software; you can redistribute it and/or modify it under the
|
|
// terms of the GNU General Public License as published by the
|
|
// Free Software Foundation; either version 3, or (at your option)
|
|
// any later version.
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// Under Section 7 of GPL version 3, you are granted additional
|
|
// permissions described in the GCC Runtime Library Exception, version
|
|
// 3.1, as published by the Free Software Foundation.
|
|
|
|
// You should have received a copy of the GNU General Public License and
|
|
// a copy of the GCC Runtime Library Exception along with this program;
|
|
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
/** @file include/thread
|
|
* This is a Standard C++ Library header.
|
|
*/
|
|
|
|
#ifndef _GLIBCXX_THREAD
|
|
#define _GLIBCXX_THREAD 1
|
|
|
|
#ifdef _GLIBCXX_SYSHDR
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
#include <bits/requires_hosted.h> // concurrency
|
|
|
|
#if __cplusplus < 201103L
|
|
# include <bits/c++0x_warning.h>
|
|
#else
|
|
|
|
#if __cplusplus > 201703L
|
|
# include <compare> // std::strong_ordering
|
|
# include <stop_token> // std::stop_source, std::stop_token, std::nostopstate
|
|
#endif
|
|
|
|
#include <bits/std_thread.h> // std::thread, get_id, yield
|
|
#include <bits/this_thread_sleep.h> // std::this_thread::sleep_for, sleep_until
|
|
|
|
#define __glibcxx_want_jthread
|
|
#define __glibcxx_want_formatters
|
|
#include <bits/version.h>
|
|
|
|
#if __cpp_lib_formatters
|
|
# include <format>
|
|
#endif
|
|
|
|
namespace std _GLIBCXX_VISIBILITY(default)
|
|
{
|
|
_GLIBCXX_BEGIN_NAMESPACE_VERSION
|
|
|
|
/**
|
|
* @defgroup threads Threads
|
|
* @ingroup concurrency
|
|
* @since C++11
|
|
*
|
|
* Classes for thread support.
|
|
* @{
|
|
*/
|
|
|
|
// std::thread is defined in <bits/std_thread.h>
|
|
|
|
/// @relates std::thread::id @{
|
|
|
|
#if __cpp_lib_three_way_comparison
|
|
inline strong_ordering
|
|
operator<=>(thread::id __x, thread::id __y) noexcept
|
|
{ return __x._M_thread <=> __y._M_thread; }
|
|
#else
|
|
inline bool
|
|
operator!=(thread::id __x, thread::id __y) noexcept
|
|
{ return !(__x == __y); }
|
|
|
|
inline bool
|
|
operator<(thread::id __x, thread::id __y) noexcept
|
|
{
|
|
// Pthreads doesn't define any way to do this, so we just have to
|
|
// assume native_handle_type is LessThanComparable.
|
|
return __x._M_thread < __y._M_thread;
|
|
}
|
|
|
|
inline bool
|
|
operator<=(thread::id __x, thread::id __y) noexcept
|
|
{ return !(__y < __x); }
|
|
|
|
inline bool
|
|
operator>(thread::id __x, thread::id __y) noexcept
|
|
{ return __y < __x; }
|
|
|
|
inline bool
|
|
operator>=(thread::id __x, thread::id __y) noexcept
|
|
{ return !(__x < __y); }
|
|
#endif // __cpp_lib_three_way_comparison
|
|
|
|
template<class _CharT, class _Traits>
|
|
inline basic_ostream<_CharT, _Traits>&
|
|
operator<<(basic_ostream<_CharT, _Traits>& __out, thread::id __id)
|
|
{
|
|
// Convert non-void pointers to const void* for formatted output.
|
|
using __output_type
|
|
= __conditional_t<is_pointer<thread::native_handle_type>::value,
|
|
const void*,
|
|
thread::native_handle_type>;
|
|
|
|
if (__id == thread::id())
|
|
return __out << "thread::id of a non-executing thread";
|
|
else
|
|
return __out << static_cast<__output_type>(__id._M_thread);
|
|
}
|
|
/// @}
|
|
|
|
#ifdef __cpp_lib_jthread // C++ >= 20
|
|
|
|
/// @cond undocumented
|
|
#ifndef __STRICT_ANSI__
|
|
template<typename _Callable, typename... _Args>
|
|
constexpr bool __pmf_expects_stop_token = false;
|
|
|
|
template<typename _Callable, typename _Obj, typename... _Args>
|
|
constexpr bool __pmf_expects_stop_token<_Callable, _Obj, _Args...>
|
|
= __and_<is_member_function_pointer<remove_reference_t<_Callable>>,
|
|
is_invocable<_Callable, _Obj, stop_token, _Args...>>::value;
|
|
#endif
|
|
/// @endcond
|
|
|
|
/** A thread with cancellation and automatic joining.
|
|
*
|
|
* Unlike `std::thread`, destroying a joinable `std::jthread` will not
|
|
* terminate the process. Instead, it will try to request its thread to
|
|
* stop, then will join it.
|
|
*
|
|
* A `std::jthread` has a `std::stop_source` member which will be passed
|
|
* as the first argument to the callable that runs in the new thread
|
|
* (as long as the callable will accept that argument). That can then
|
|
* be used to send a stop request that the new thread can test for.
|
|
*
|
|
* @headerfile thread
|
|
* @since C++20
|
|
*/
|
|
class jthread
|
|
{
|
|
public:
|
|
using id = thread::id;
|
|
using native_handle_type = thread::native_handle_type;
|
|
|
|
jthread() noexcept
|
|
: _M_stop_source{nostopstate}
|
|
{ }
|
|
|
|
template<typename _Callable, typename... _Args,
|
|
typename = enable_if_t<!is_same_v<remove_cvref_t<_Callable>,
|
|
jthread>>>
|
|
explicit
|
|
jthread(_Callable&& __f, _Args&&... __args)
|
|
: _M_thread{_S_create(_M_stop_source, std::forward<_Callable>(__f),
|
|
std::forward<_Args>(__args)...)}
|
|
{ }
|
|
|
|
jthread(const jthread&) = delete;
|
|
jthread(jthread&&) noexcept = default;
|
|
|
|
~jthread()
|
|
{
|
|
if (joinable())
|
|
{
|
|
request_stop();
|
|
join();
|
|
}
|
|
}
|
|
|
|
jthread&
|
|
operator=(const jthread&) = delete;
|
|
|
|
jthread&
|
|
operator=(jthread&& __other) noexcept
|
|
{
|
|
std::jthread(std::move(__other)).swap(*this);
|
|
return *this;
|
|
}
|
|
|
|
void
|
|
swap(jthread& __other) noexcept
|
|
{
|
|
std::swap(_M_stop_source, __other._M_stop_source);
|
|
std::swap(_M_thread, __other._M_thread);
|
|
}
|
|
|
|
[[nodiscard]] bool
|
|
joinable() const noexcept
|
|
{
|
|
return _M_thread.joinable();
|
|
}
|
|
|
|
void
|
|
join()
|
|
{
|
|
_M_thread.join();
|
|
}
|
|
|
|
void
|
|
detach()
|
|
{
|
|
_M_thread.detach();
|
|
}
|
|
|
|
[[nodiscard]] id
|
|
get_id() const noexcept
|
|
{
|
|
return _M_thread.get_id();
|
|
}
|
|
|
|
[[nodiscard]] native_handle_type
|
|
native_handle()
|
|
{
|
|
return _M_thread.native_handle();
|
|
}
|
|
|
|
[[nodiscard]] static unsigned
|
|
hardware_concurrency() noexcept
|
|
{
|
|
return thread::hardware_concurrency();
|
|
}
|
|
|
|
[[nodiscard]] stop_source
|
|
get_stop_source() noexcept
|
|
{
|
|
return _M_stop_source;
|
|
}
|
|
|
|
[[nodiscard]] stop_token
|
|
get_stop_token() const noexcept
|
|
{
|
|
return _M_stop_source.get_token();
|
|
}
|
|
|
|
bool request_stop() noexcept
|
|
{
|
|
return _M_stop_source.request_stop();
|
|
}
|
|
|
|
friend void swap(jthread& __lhs, jthread& __rhs) noexcept
|
|
{
|
|
__lhs.swap(__rhs);
|
|
}
|
|
|
|
private:
|
|
template<typename _Callable, typename... _Args>
|
|
static thread
|
|
_S_create(stop_source& __ssrc, _Callable&& __f, _Args&&... __args)
|
|
{
|
|
#ifndef __STRICT_ANSI__
|
|
if constexpr (__pmf_expects_stop_token<_Callable, _Args...>)
|
|
return _S_create_pmf(__ssrc, __f, std::forward<_Args>(__args)...);
|
|
else
|
|
#endif
|
|
if constexpr(is_invocable_v<decay_t<_Callable>, stop_token,
|
|
decay_t<_Args>...>)
|
|
return thread{std::forward<_Callable>(__f), __ssrc.get_token(),
|
|
std::forward<_Args>(__args)...};
|
|
else
|
|
{
|
|
static_assert(is_invocable_v<decay_t<_Callable>,
|
|
decay_t<_Args>...>,
|
|
"std::jthread arguments must be invocable after"
|
|
" conversion to rvalues");
|
|
return thread{std::forward<_Callable>(__f),
|
|
std::forward<_Args>(__args)...};
|
|
}
|
|
}
|
|
|
|
#ifndef __STRICT_ANSI__
|
|
template<typename _Callable, typename _Obj, typename... _Args>
|
|
static thread
|
|
_S_create_pmf(stop_source& __ssrc, _Callable __f, _Obj&& __obj,
|
|
_Args&&... __args)
|
|
{
|
|
return thread{__f, std::forward<_Obj>(__obj), __ssrc.get_token(),
|
|
std::forward<_Args>(__args)...};
|
|
}
|
|
#endif
|
|
|
|
stop_source _M_stop_source;
|
|
thread _M_thread;
|
|
};
|
|
#endif // __cpp_lib_jthread
|
|
|
|
#ifdef __cpp_lib_formatters // C++ >= 23
|
|
template<typename _CharT>
|
|
requires is_pointer_v<thread::native_handle_type>
|
|
|| is_integral_v<thread::native_handle_type>
|
|
class formatter<thread::id, _CharT>
|
|
{
|
|
public:
|
|
constexpr typename basic_format_parse_context<_CharT>::iterator
|
|
parse(basic_format_parse_context<_CharT>& __pc)
|
|
{
|
|
__format::_Spec<_CharT> __spec{};
|
|
const auto __last = __pc.end();
|
|
auto __first = __pc.begin();
|
|
|
|
auto __finalize = [this, &__spec] {
|
|
_M_spec = __spec;
|
|
};
|
|
|
|
auto __finished = [&] {
|
|
if (__first == __last || *__first == '}')
|
|
{
|
|
__finalize();
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
if (__finished())
|
|
return __first;
|
|
|
|
__first = __spec._M_parse_fill_and_align(__first, __last);
|
|
if (__finished())
|
|
return __first;
|
|
|
|
__first = __spec._M_parse_width(__first, __last, __pc);
|
|
if (__finished())
|
|
return __first;
|
|
|
|
__throw_format_error("format error: invalid format-spec for "
|
|
"std::thread::id");
|
|
}
|
|
|
|
template<typename _Out>
|
|
typename basic_format_context<_Out, _CharT>::iterator
|
|
format(thread::id __id, basic_format_context<_Out, _CharT>& __fc) const
|
|
{
|
|
basic_string_view<_CharT> __sv;
|
|
if constexpr (is_same_v<_CharT, char>)
|
|
__sv = "{}thread::id of a non-executing thread";
|
|
else
|
|
__sv = L"{}thread::id of a non-executing thread";
|
|
basic_string<_CharT> __str;
|
|
if (__id == thread::id())
|
|
__sv.remove_prefix(2);
|
|
else
|
|
{
|
|
using _FmtStr = __format::_Runtime_format_string<_CharT>;
|
|
// Convert non-void pointers to const void* for formatted output.
|
|
using __output_type
|
|
= __conditional_t<is_pointer_v<thread::native_handle_type>,
|
|
const void*,
|
|
thread::native_handle_type>;
|
|
auto __o = static_cast<__output_type>(__id._M_thread);
|
|
__sv = __str = std::format(_FmtStr(__sv.substr(0, 2)), __o);
|
|
}
|
|
return __format::__write_padded_as_spec(__sv, __sv.size(),
|
|
__fc, _M_spec,
|
|
__format::_Align_right);
|
|
}
|
|
|
|
private:
|
|
__format::_Spec<_CharT> _M_spec;
|
|
};
|
|
#endif // __cpp_lib_formatters
|
|
|
|
/// @} group threads
|
|
|
|
_GLIBCXX_END_NAMESPACE_VERSION
|
|
} // namespace
|
|
#endif // C++11
|
|
#endif // _GLIBCXX_THREAD
|