| 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) {
|
| +}
|
|
|