diff options
Diffstat (limited to 'base/process_util.h')
-rw-r--r-- | base/process_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/process_util.h b/base/process_util.h index c921d7a..029f307 100644 --- a/base/process_util.h +++ b/base/process_util.h @@ -151,9 +151,9 @@ bool KillProcesses(const std::wstring& executable_name, int exit_code, // entry structure, giving it the specified exit code. If |wait| is true, wait // for the process to be actually terminated before returning. // Returns true if this is successful, false otherwise. -bool KillProcess(int process_id, int exit_code, bool wait); +bool KillProcess(ProcessHandle process, int exit_code, bool wait); #if defined(OS_WIN) -bool KillProcess(HANDLE process, int exit_code, bool wait); +bool KillProcessById(DWORD process_id, int exit_code, bool wait); #endif // Get the termination status (exit code) of the process and return true if the |