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

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

Issue 463993002: - Separate the thread implementation used in bin/ and vm/ (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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
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_WINDOWS) 6 #if defined(TARGET_OS_WINDOWS)
7 7
8 #include <process.h> // NOLINT 8 #include <process.h> // NOLINT
9 9
10 #include "bin/builtin.h" 10 #include "bin/builtin.h"
11 #include "bin/process.h" 11 #include "bin/process.h"
12 #include "bin/eventhandler.h" 12 #include "bin/eventhandler.h"
13 #include "bin/lockers.h"
13 #include "bin/log.h" 14 #include "bin/log.h"
14 #include "bin/socket.h" 15 #include "bin/socket.h"
15 #include "bin/thread.h" 16 #include "bin/thread.h"
16 #include "bin/utils.h" 17 #include "bin/utils.h"
17 #include "bin/utils_win.h" 18 #include "bin/utils_win.h"
18 19
19 20
20 namespace dart { 21 namespace dart {
21 namespace bin { 22 namespace bin {
22 23
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 USE(SetConsoleCtrlHandler(SignalHandler, false)); 948 USE(SetConsoleCtrlHandler(SignalHandler, false));
948 } 949 }
949 } 950 }
950 delete handler; 951 delete handler;
951 } 952 }
952 953
953 } // namespace bin 954 } // namespace bin
954 } // namespace dart 955 } // namespace dart
955 956
956 #endif // defined(TARGET_OS_WINDOWS) 957 #endif // defined(TARGET_OS_WINDOWS)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698