78d280a2df
TEST=tsan Bug: https://github.com/dart-lang/sdk/issues/61352 Change-Id: I0e64e563b19bbd7b67e6f275dbc373db08b9d2c7 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/449980 Reviewed-by: Alexander Aprelev <aam@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
17 lines
443 B
C++
17 lines
443 B
C++
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_VM_TSAN_SYMBOLIZE_H_
|
|
#define RUNTIME_VM_TSAN_SYMBOLIZE_H_
|
|
|
|
#include "vm/object.h"
|
|
|
|
namespace dart {
|
|
|
|
void RegisterTsanSymbolize(const Code& code);
|
|
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_VM_TSAN_SYMBOLIZE_H_
|