OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/namespace contains utility functions for enumerating, ending and | 5 // This file/namespace contains utility functions for enumerating, ending and |
6 // computing statistics of processes. | 6 // computing statistics of processes. |
7 | 7 |
8 #ifndef BASE_PROCESS_UTIL_H_ | 8 #ifndef BASE_PROCESS_UTIL_H_ |
9 #define BASE_PROCESS_UTIL_H_ | 9 #define BASE_PROCESS_UTIL_H_ |
10 | 10 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 bool wait, bool start_hidden, ProcessHandle* process_handle); | 128 bool wait, bool start_hidden, ProcessHandle* process_handle); |
129 #elif defined(OS_POSIX) | 129 #elif defined(OS_POSIX) |
130 // Runs the application specified in argv[0] with the command line argv. | 130 // Runs the application specified in argv[0] with the command line argv. |
131 // Before launching all FDs open in the parent process will be marked as | 131 // Before launching all FDs open in the parent process will be marked as |
132 // close-on-exec. |fds_to_remap| defines a mapping of src fd->dest fd to | 132 // close-on-exec. |fds_to_remap| defines a mapping of src fd->dest fd to |
133 // propagate FDs into the child process. | 133 // propagate FDs into the child process. |
134 // | 134 // |
135 // As above, if wait is true, execute synchronously. The pid will be stored | 135 // As above, if wait is true, execute synchronously. The pid will be stored |
136 // in process_handle if that pointer is non-null. | 136 // in process_handle if that pointer is non-null. |
137 // | 137 // |
138 // Note that the first argument in argv must point to the filename, | 138 // Note that the first argument in argv must point to the executable filename. |
139 // and must be fully specified. | 139 // If the filename is not fully specified, PATH will be searched. |
140 typedef std::vector<std::pair<int, int> > file_handle_mapping_vector; | 140 typedef std::vector<std::pair<int, int> > file_handle_mapping_vector; |
141 bool LaunchApp(const std::vector<std::string>& argv, | 141 bool LaunchApp(const std::vector<std::string>& argv, |
142 const file_handle_mapping_vector& fds_to_remap, | 142 const file_handle_mapping_vector& fds_to_remap, |
143 bool wait, ProcessHandle* process_handle); | 143 bool wait, ProcessHandle* process_handle); |
144 #endif | 144 #endif |
145 | 145 |
146 // Executes the application specified by cl. This function delegates to one | 146 // Executes the application specified by cl. This function delegates to one |
147 // of the above two platform-specific functions. | 147 // of the above two platform-specific functions. |
148 bool LaunchApp(const CommandLine& cl, | 148 bool LaunchApp(const CommandLine& cl, |
149 bool wait, bool start_hidden, ProcessHandle* process_handle); | 149 bool wait, bool start_hidden, ProcessHandle* process_handle); |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 // overflow. Has no effect if the OS doesn't provide the necessary facility. | 392 // overflow. Has no effect if the OS doesn't provide the necessary facility. |
393 void EnableTerminationOnHeapCorruption(); | 393 void EnableTerminationOnHeapCorruption(); |
394 | 394 |
395 // If supported on the platform, and the user has sufficent rights, increase | 395 // If supported on the platform, and the user has sufficent rights, increase |
396 // the current process's scheduling priority to a high priority. | 396 // the current process's scheduling priority to a high priority. |
397 void RaiseProcessToHighPriority(); | 397 void RaiseProcessToHighPriority(); |
398 | 398 |
399 } // namespace base | 399 } // namespace base |
400 | 400 |
401 #endif // BASE_PROCESS_UTIL_H_ | 401 #endif // BASE_PROCESS_UTIL_H_ |
OLD | NEW |