Add hppa*-*-* to dg-error targets at line 5
[official-gcc.git] / libsanitizer / tsan / tsan_platform_windows.cpp
blobeb8f354742f4ac357c3b85742d972d310844c92e
1 //===-- tsan_platform_windows.cpp -----------------------------------------===//
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 // This file is a part of ThreadSanitizer (TSan), a race detector.
11 // Windows-specific code.
12 //===----------------------------------------------------------------------===//
14 #include "sanitizer_common/sanitizer_platform.h"
15 #if SANITIZER_WINDOWS
17 #include "tsan_platform.h"
19 #include <stdlib.h>
21 namespace __tsan {
23 void WriteMemoryProfile(char *buf, uptr buf_size, u64 uptime_ns) {}
25 void InitializePlatformEarly() {
28 void InitializePlatform() {
31 } // namespace __tsan
33 #endif // SANITIZER_WINDOWS