9ff7ee6132
BUG= R=zra@google.com Review-Url: https://codereview.chromium.org/2619443002 .
18 lines
416 B
C++
18 lines
416 B
C++
// Copyright (c) 2017, 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.
|
|
|
|
#if defined(DART_USE_TCMALLOC)
|
|
|
|
#include "vm/malloc_hooks.h"
|
|
|
|
namespace dart {
|
|
|
|
void MallocHooks::Init() {
|
|
// TODO(bkonyi): Implement
|
|
}
|
|
|
|
} // namespace dart
|
|
|
|
#endif // defined(DART_USE_TCMALLOC)
|