There are discussions about different ways of implementing `stop_token` to make it more performant mark `stop_token` as experimental to allow us to change the design before it is shipped Co-authored-by: Louis Dionne <ldionne.2@gmail.com> Differential Revision: https://reviews.llvm.org/D154700
26 lines
1.0 KiB
C++
26 lines
1.0 KiB
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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// UNSUPPORTED: no-threads
|
|
// UNSUPPORTED: libcpp-has-no-experimental-stop_token
|
|
// UNSUPPORTED: c++03, c++11, c++14, c++17
|
|
// XFAIL: availability-synchronization_library-missing
|
|
|
|
// [[nodiscard]] bool stop_requested() const noexcept;
|
|
// [[nodiscard]] bool stop_possible() const noexcept;
|
|
// [[nodiscard]] friend bool operator==(const stop_token& lhs, const stop_token& rhs) noexcept;
|
|
|
|
#include <stop_token>
|
|
|
|
void test() {
|
|
std::stop_token st;
|
|
st.stop_requested(); // expected-warning {{ignoring return value of function}}
|
|
st.stop_possible(); // expected-warning {{ignoring return value of function}}
|
|
operator==(st, st); // expected-warning {{ignoring return value of function}}
|
|
}
|