OLD | NEW |
(Empty) | |
| 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/globals.h" |
| 6 #if defined(TARGET_OS_FUCHSIA) |
| 7 |
| 8 #include "vm/native_symbol.h" |
| 9 |
| 10 #include "platform/assert.h" |
| 11 |
| 12 namespace dart { |
| 13 |
| 14 void NativeSymbolResolver::InitOnce() { |
| 15 UNIMPLEMENTED(); |
| 16 } |
| 17 |
| 18 |
| 19 void NativeSymbolResolver::ShutdownOnce() { |
| 20 UNIMPLEMENTED(); |
| 21 } |
| 22 |
| 23 |
| 24 char* NativeSymbolResolver::LookupSymbolName(uintptr_t pc, uintptr_t* start) { |
| 25 UNIMPLEMENTED(); |
| 26 return NULL; |
| 27 } |
| 28 |
| 29 |
| 30 void NativeSymbolResolver::FreeSymbolName(char* name) { |
| 31 UNIMPLEMENTED(); |
| 32 } |
| 33 |
| 34 } // namespace dart |
| 35 |
| 36 #endif // defined(TARGET_OS_FUCHSIA) |
OLD | NEW |