1// -*- C++ -*- 2//===----------------------------------------------------------------------===// 3// 4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5// See https://llvm.org/LICENSE.txt for license information. 6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7// 8//===----------------------------------------------------------------------===// 9 10module; 11#include <stop_token> 12 13export module std:stop_token; 14export namespace std { 15 // [stoptoken], class stop_token 16 using std::stop_token; 17 18 // [stopsource], class stop_source 19 using std::stop_source; 20 21 // no-shared-stop-state indicator 22 using std::nostopstate; 23 using std::nostopstate_t; 24 25 // [stopcallback], class template stop_callback 26 using std::stop_callback; 27} // namespace std 28