| 1 | // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
|---|---|
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
| 4 | |
| 5 | #include "vm/dart_api_state.h" |
| 6 | |
| 7 | #include "platform/assert.h" |
| 8 | #include "platform/utils.h" |
| 9 | #include "vm/heap/heap.h" |
| 10 | #include "vm/isolate.h" |
| 11 | #include "vm/lockers.h" |
| 12 | #include "vm/thread.h" |
| 13 | #include "vm/timeline.h" |
| 14 | |
| 15 | namespace dart { |
| 16 | |
| 17 | RelaxedAtomic<intptr_t> ApiNativeScope::current_memory_usage_ = 0; |
| 18 | |
| 19 | } // namespace dart |
| 20 |