2023-05-17 13:22:23 +01:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_STOP_TOKEN
|
|
|
|
#define _LIBCPP_STOP_TOKEN
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
// [stoptoken], class stop_token
|
|
|
|
class stop_token;
|
|
|
|
|
|
|
|
// [stopsource], class stop_source
|
|
|
|
class stop_source;
|
|
|
|
|
|
|
|
// no-shared-stop-state indicator
|
|
|
|
struct nostopstate_t {
|
|
|
|
explicit nostopstate_t() = default;
|
|
|
|
};
|
|
|
|
inline constexpr nostopstate_t nostopstate{};
|
|
|
|
|
|
|
|
// [stopcallback], class template stop_callback
|
|
|
|
template<class Callback>
|
|
|
|
class stop_callback;
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2024-12-21 13:01:48 +01:00
|
|
|
#if __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
|
|
|
|
# include <__cxx03/stop_token>
|
|
|
|
#else
|
2024-12-10 16:02:12 +01:00
|
|
|
# include <__config>
|
2024-01-16 19:13:40 +01:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_HAS_THREADS
|
2024-01-16 19:13:40 +01:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 20
|
|
|
|
# include <__stop_token/stop_callback.h>
|
|
|
|
# include <__stop_token/stop_source.h>
|
|
|
|
# include <__stop_token/stop_token.h>
|
|
|
|
# endif
|
2024-07-18 10:59:58 +02:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# include <version>
|
2023-05-17 13:22:23 +01:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
|
|
# pragma GCC system_header
|
|
|
|
# endif
|
2024-07-15 09:11:23 -05:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_HAS_THREADS
|
2023-05-17 13:22:23 +01:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
|
|
|
|
# include <cstddef>
|
|
|
|
# include <iosfwd>
|
|
|
|
# endif
|
2024-12-21 13:01:48 +01:00
|
|
|
#endif // __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
|
2023-10-29 18:31:37 +01:00
|
|
|
|
2023-05-17 13:22:23 +01:00
|
|
|
#endif // _LIBCPP_STOP_TOKEN
|