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

Unified Diff: runtime/bin/process_win.cc

Issue 8233008: Fix Windows build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process_win.cc
diff --git a/runtime/bin/process_win.cc b/runtime/bin/process_win.cc
index 29c0a0281fc1d5ac3a16535e5b310d101447782e..c10e1a46945262ef2bd5fbf8eacf4b058e82acea 100644
--- a/runtime/bin/process_win.cc
+++ b/runtime/bin/process_win.cc
@@ -78,6 +78,7 @@ int Process::Start(const char* path,
return 0;
}
+
bool Process::Kill(intptr_t id) {
HANDLE process_handle = reinterpret_cast<HANDLE>(id);
BOOL result = TerminateProcess(process_handle, -1);
@@ -87,3 +88,7 @@ bool Process::Kill(intptr_t id) {
CloseHandle(process_handle);
return true;
}
+
+
+void Process::Exit(intptr_t id) {
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698