1*d89ec533Spatrick //===-- sanitizer_stoptheworld_fuchsia.h ------------------------*- C++ -*-===// 2*d89ec533Spatrick // 3*d89ec533Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*d89ec533Spatrick // See https://llvm.org/LICENSE.txt for license information. 5*d89ec533Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*d89ec533Spatrick // 7*d89ec533Spatrick //===----------------------------------------------------------------------===// 8*d89ec533Spatrick 9*d89ec533Spatrick #ifndef SANITIZER_STOPTHEWORLD_FUCHSIA_H 10*d89ec533Spatrick #define SANITIZER_STOPTHEWORLD_FUCHSIA_H 11*d89ec533Spatrick 12*d89ec533Spatrick #include "sanitizer_stoptheworld.h" 13*d89ec533Spatrick 14*d89ec533Spatrick namespace __sanitizer { 15*d89ec533Spatrick 16*d89ec533Spatrick class SuspendedThreadsListFuchsia final : public SuspendedThreadsList {}; 17*d89ec533Spatrick 18*d89ec533Spatrick } // namespace __sanitizer 19*d89ec533Spatrick 20*d89ec533Spatrick #endif // SANITIZER_STOPTHEWORLD_FUCHSIA_H 21