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

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

Issue 1275353005: VM thread shutdown. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merge Created 5 years, 3 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/builtin.h ('k') | runtime/bin/dartutils.h » ('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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 <stdio.h> 5 #include <stdio.h>
6 6
7 #include "include/dart_api.h" 7 #include "include/dart_api.h"
8 8
9 #include "bin/builtin.h" 9 #include "bin/builtin.h"
10 #include "bin/dartutils.h" 10 #include "bin/dartutils.h"
11 #include "bin/platform.h" 11 #include "bin/platform.h"
12 12
13 // Return the error from the containing function if handle is in error handle.
14 #define RETURN_IF_ERROR(handle) \
15 { \
16 Dart_Handle __handle = handle; \
17 if (Dart_IsError((__handle))) { \
18 return __handle; \
19 } \
20 }
21
13 namespace dart { 22 namespace dart {
14 namespace bin { 23 namespace bin {
15 24
16 void Builtin::SetLoadPort(Dart_Port port) { 25 Dart_Handle Builtin::SetLoadPort(Dart_Port port) {
17 load_port_ = port; 26 load_port_ = port;
18 ASSERT(load_port_ != ILLEGAL_PORT); 27 ASSERT(load_port_ != ILLEGAL_PORT);
19 Dart_Handle field_name = DartUtils::NewString("_loadPort"); 28 Dart_Handle field_name = DartUtils::NewString("_loadPort");
20 ASSERT(!Dart_IsError(field_name)); 29 RETURN_IF_ERROR(field_name);
21 Dart_Handle builtin_lib = 30 Dart_Handle builtin_lib =
22 Builtin::LoadAndCheckLibrary(Builtin::kBuiltinLibrary); 31 Builtin::LoadAndCheckLibrary(Builtin::kBuiltinLibrary);
23 ASSERT(!Dart_IsError(builtin_lib)); 32 RETURN_IF_ERROR(builtin_lib);
24 Dart_Handle send_port = Dart_GetField(builtin_lib, field_name); 33 Dart_Handle send_port = Dart_GetField(builtin_lib, field_name);
25 ASSERT(!Dart_IsError(send_port)); 34 RETURN_IF_ERROR(send_port);
26 if (!Dart_IsNull(send_port)) { 35 if (!Dart_IsNull(send_port)) {
27 // Already created and set. 36 // Already created and set.
28 return; 37 return Dart_True();
29 } 38 }
30 send_port = Dart_NewSendPort(load_port_); 39 send_port = Dart_NewSendPort(load_port_);
31 ASSERT(!Dart_IsError(send_port)); 40 RETURN_IF_ERROR(send_port);
32 Dart_Handle result = Dart_SetField(builtin_lib, field_name, send_port); 41 Dart_Handle result = Dart_SetField(builtin_lib, field_name, send_port);
33 ASSERT(!Dart_IsError(result)); 42 RETURN_IF_ERROR(result);
43 return Dart_True();
34 } 44 }
35 45
36 } // namespace bin 46 } // namespace bin
37 } // namespace dart 47 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/bin/builtin.h ('k') | runtime/bin/dartutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698