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

Side by Side Diff: base/process/kill.h

Issue 759903002: Upgrade the windows specific version of LaunchProcess to avoid raw handles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix chrome build Created 6 years 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
« no previous file with comments | « no previous file | base/process/kill_mac.cc » ('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 Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file contains routines to kill processes and get the exit code and 5 // This file contains routines to kill processes and get the exit code and
6 // termination status. 6 // termination status.
7 7
8 #ifndef BASE_PROCESS_KILL_H_ 8 #ifndef BASE_PROCESS_KILL_H_
9 #define BASE_PROCESS_KILL_H_ 9 #define BASE_PROCESS_KILL_H_
10 10
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/process/process.h"
12 #include "base/process/process_handle.h" 13 #include "base/process/process_handle.h"
13 #include "base/time/time.h" 14 #include "base/time/time.h"
14 15
15 namespace base { 16 namespace base {
16 17
17 class ProcessFilter; 18 class ProcessFilter;
18 19
19 // Return status values from GetTerminationStatus. Don't use these as 20 // Return status values from GetTerminationStatus. Don't use these as
20 // exit code arguments to KillProcess*(), use platform/application 21 // exit code arguments to KillProcess*(), use platform/application
21 // specific values instead. 22 // specific values instead.
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 // then it closes the given process handle. 140 // then it closes the given process handle.
140 // 141 //
141 // It assumes that the process has already been signalled to exit, and it 142 // It assumes that the process has already been signalled to exit, and it
142 // begins by waiting a small amount of time for it to exit. If the process 143 // begins by waiting a small amount of time for it to exit. If the process
143 // does not appear to have exited, then this function starts to become 144 // does not appear to have exited, then this function starts to become
144 // aggressive about ensuring that the process terminates. 145 // aggressive about ensuring that the process terminates.
145 // 146 //
146 // On Linux this method does not block the calling thread. 147 // On Linux this method does not block the calling thread.
147 // On OS X this method may block for up to 2 seconds. 148 // On OS X this method may block for up to 2 seconds.
148 // 149 //
149 // NOTE: The process handle must have been opened with the PROCESS_TERMINATE 150 // NOTE: The process must have been opened with the PROCESS_TERMINATE and
150 // and SYNCHRONIZE permissions. 151 // SYNCHRONIZE permissions.
151 // 152 //
152 BASE_EXPORT void EnsureProcessTerminated(ProcessHandle process_handle); 153 BASE_EXPORT void EnsureProcessTerminated(Process process);
153 154
154 #if defined(OS_POSIX) && !defined(OS_MACOSX) 155 #if defined(OS_POSIX) && !defined(OS_MACOSX)
155 // The nicer version of EnsureProcessTerminated() that is patient and will 156 // The nicer version of EnsureProcessTerminated() that is patient and will
156 // wait for |process_handle| to finish and then reap it. 157 // wait for |process_handle| to finish and then reap it.
157 BASE_EXPORT void EnsureProcessGetsReaped(ProcessHandle process_handle); 158 BASE_EXPORT void EnsureProcessGetsReaped(ProcessHandle process_handle);
158 #endif 159 #endif
159 160
160 } // namespace base 161 } // namespace base
161 162
162 #endif // BASE_PROCESS_KILL_H_ 163 #endif // BASE_PROCESS_KILL_H_
OLDNEW
« no previous file with comments | « no previous file | base/process/kill_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698