Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: runtime/bin/extensions_fuchsia.cc

Issue 2405393002: Use a single file for app snapshots. (Closed)
Patch Set: gen_snapshot Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/bin/extensions_android.cc ('k') | runtime/bin/extensions_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "platform/globals.h" 5 #include "platform/globals.h"
6 #if defined(TARGET_OS_FUCHSIA) 6 #if defined(TARGET_OS_FUCHSIA)
7 7
8 #include "bin/extensions.h" 8 #include "bin/extensions.h"
9 #include <dlfcn.h> // NOLINT 9 #include <dlfcn.h> // NOLINT
10 10
11 namespace dart { 11 namespace dart {
12 namespace bin { 12 namespace bin {
13 13
14 const char* kPrecompiledLibraryName = "libprecompiled.so"; 14 const char* kPrecompiledVMIsolateSymbolName = "_kVmIsolateSnapshot";
15 const char* kPrecompiledIsolateSymbolName = "_kIsolateSnapshot";
15 const char* kPrecompiledInstructionsSymbolName = "_kInstructionsSnapshot"; 16 const char* kPrecompiledInstructionsSymbolName = "_kInstructionsSnapshot";
16 const char* kPrecompiledDataSymbolName = "_kDataSnapshot"; 17 const char* kPrecompiledDataSymbolName = "_kDataSnapshot";
17 18
18 void* Extensions::LoadExtensionLibrary(const char* library_file) { 19 void* Extensions::LoadExtensionLibrary(const char* library_file) {
19 return dlopen(library_file, RTLD_LAZY); 20 return dlopen(library_file, RTLD_LAZY);
20 } 21 }
21 22
22 void* Extensions::ResolveSymbol(void* lib_handle, const char* symbol) { 23 void* Extensions::ResolveSymbol(void* lib_handle, const char* symbol) {
23 dlerror(); 24 dlerror();
24 return dlsym(lib_handle, symbol); 25 return dlsym(lib_handle, symbol);
25 } 26 }
26 27
27 Dart_Handle Extensions::GetError() { 28 Dart_Handle Extensions::GetError() {
28 const char* err_str = dlerror(); 29 const char* err_str = dlerror();
29 if (err_str != NULL) { 30 if (err_str != NULL) {
30 return Dart_NewApiError(err_str); 31 return Dart_NewApiError(err_str);
31 } 32 }
32 return Dart_Null(); 33 return Dart_Null();
33 } 34 }
34 35
35 } // namespace bin 36 } // namespace bin
36 } // namespace dart 37 } // namespace dart
37 38
38 #endif // defined(TARGET_OS_FUCHSIA) 39 #endif // defined(TARGET_OS_FUCHSIA)
OLDNEW
« no previous file with comments | « runtime/bin/extensions_android.cc ('k') | runtime/bin/extensions_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698