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