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

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

Issue 1559053002: Refs #10260 OpenBSD support #25327 Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address code review issues Created 4 years, 11 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/eventhandler_openbsd.cc ('k') | runtime/bin/fdutils_openbsd.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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_LINUX) 6 #if defined(TARGET_OS_OPENBSD)
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 11
12 namespace dart { 12 namespace dart {
13 namespace bin { 13 namespace bin {
14 14
15 const char* kPrecompiledLibraryName = "libprecompiled.so"; 15 const char* kPrecompiledLibraryName = "libprecompiled.so";
16 const char* kPrecompiledSymbolName = "_kInstructionsSnapshot"; 16 const char* kPrecompiledSymbolName = "_kInstructionsSnapshot";
(...skipping 11 matching lines...) Expand all
28 const char* err_str = dlerror(); 28 const char* err_str = dlerror();
29 if (err_str != NULL) { 29 if (err_str != NULL) {
30 return Dart_NewApiError(err_str); 30 return Dart_NewApiError(err_str);
31 } 31 }
32 return Dart_Null(); 32 return Dart_Null();
33 } 33 }
34 34
35 } // namespace bin 35 } // namespace bin
36 } // namespace dart 36 } // namespace dart
37 37
38 #endif // defined(TARGET_OS_LINUX) 38 #endif // defined(TARGET_OS_OPENBSD)
OLDNEW
« no previous file with comments | « runtime/bin/eventhandler_openbsd.cc ('k') | runtime/bin/fdutils_openbsd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698