sanitizer_stoptheworld_fuchsia.h 663 B

1234567891011121314151617181920
  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. #ifndef SANITIZER_STOPTHEWORLD_FUCHSIA_H
  9. #define SANITIZER_STOPTHEWORLD_FUCHSIA_H
  10. #include "sanitizer_stoptheworld.h"
  11. namespace __sanitizer {
  12. class SuspendedThreadsListFuchsia final : public SuspendedThreadsList {};
  13. } // namespace __sanitizer
  14. #endif // SANITIZER_STOPTHEWORLD_FUCHSIA_H