brintos

brintos / llvm-project-archived public Read only

0
0
Text · 663 B · 6d9ead6 Raw
21 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef SANITIZER_STOPTHEWORLD_FUCHSIA_H10#define SANITIZER_STOPTHEWORLD_FUCHSIA_H11 12#include "sanitizer_stoptheworld.h"13 14namespace __sanitizer {15 16class SuspendedThreadsListFuchsia final : public SuspendedThreadsList {};17 18}  // namespace __sanitizer19 20#endif  // SANITIZER_STOPTHEWORLD_FUCHSIA_H21