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

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

Issue 297183003: Reduce CPU usage when no isolates need to be profiled. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « runtime/bin/process.cc ('k') | runtime/include/dart_api.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 "bin/builtin.h" 5 #include "bin/builtin.h"
6 #include "bin/dartutils.h" 6 #include "bin/dartutils.h"
7 #include "bin/utils.h" 7 #include "bin/utils.h"
8 #include "bin/stdio.h" 8 #include "bin/stdio.h"
9 9
10 #include "platform/globals.h" 10 #include "platform/globals.h"
11 #include "platform/thread.h" 11 #include "platform/thread.h"
12 #include "platform/utils.h" 12 #include "platform/utils.h"
13 13
14 #include "include/dart_api.h" 14 #include "include/dart_api.h"
15 15
16 16
17 namespace dart { 17 namespace dart {
18 namespace bin { 18 namespace bin {
19 19
20 void FUNCTION_NAME(Stdin_ReadByte)(Dart_NativeArguments args) { 20 void FUNCTION_NAME(Stdin_ReadByte)(Dart_NativeArguments args) {
21 ScopedBlockingCall blocker;
21 Dart_SetReturnValue(args, Dart_NewInteger(Stdin::ReadByte())); 22 Dart_SetReturnValue(args, Dart_NewInteger(Stdin::ReadByte()));
22 } 23 }
23 24
24 25
25 void FUNCTION_NAME(Stdin_GetEchoMode)(Dart_NativeArguments args) { 26 void FUNCTION_NAME(Stdin_GetEchoMode)(Dart_NativeArguments args) {
26 Dart_SetReturnValue(args, Dart_NewBoolean(Stdin::GetEchoMode())); 27 Dart_SetReturnValue(args, Dart_NewBoolean(Stdin::GetEchoMode()));
27 } 28 }
28 29
29 30
30 void FUNCTION_NAME(Stdin_SetEchoMode)(Dart_NativeArguments args) { 31 void FUNCTION_NAME(Stdin_SetEchoMode)(Dart_NativeArguments args) {
(...skipping 20 matching lines...) Expand all
51 Dart_ListSetAt(list, 0, Dart_NewInteger(size[0])); 52 Dart_ListSetAt(list, 0, Dart_NewInteger(size[0]));
52 Dart_ListSetAt(list, 1, Dart_NewInteger(size[1])); 53 Dart_ListSetAt(list, 1, Dart_NewInteger(size[1]));
53 Dart_SetReturnValue(args, list); 54 Dart_SetReturnValue(args, list);
54 } else { 55 } else {
55 Dart_SetReturnValue(args, DartUtils::NewDartOSError()); 56 Dart_SetReturnValue(args, DartUtils::NewDartOSError());
56 } 57 }
57 } 58 }
58 59
59 } // namespace bin 60 } // namespace bin
60 } // namespace dart 61 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/bin/process.cc ('k') | runtime/include/dart_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698