- Timestamp:
- Feb 24, 2010 11:15:04 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/process.h
r26726 r26733 216 216 * Waits for a process, resumes on interruption. 217 217 * 218 * @returns VINF_SUCCESS when the status code for the process was collected and put in *pProcStatus. 218 * @returns VINF_SUCCESS when the status code for the process was collected and 219 * put in *pProcStatus. 219 220 * @returns VERR_PROCESS_NOT_FOUND if the specified process wasn't found. 220 * @returns VERR_PROCESS_RUNNING when the RTPROCWAIT_FLAG_NOBLOCK and the process haven't exited yet. 221 * @returns VERR_PROCESS_RUNNING when the RTPROCWAIT_FLAGS_NOBLOCK and the 222 * process haven't exited yet. 221 223 * 222 224 * @param Process The process to wait for. 223 225 * @param fFlags The wait flags, any of the RTPROCWAIT_FLAGS_ \#defines. 224 226 * @param pProcStatus Where to store the exit status on success. 227 * Optional. 225 228 */ 226 229 RTR3DECL(int) RTProcWait(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus); … … 229 232 * Waits for a process, returns on interruption. 230 233 * 231 * @returns VINF_SUCCESS when the status code for the process was collected and put in *pProcStatus. 234 * @returns VINF_SUCCESS when the status code for the process was collected and 235 * put in *pProcStatus. 232 236 * @returns VERR_PROCESS_NOT_FOUND if the specified process wasn't found. 233 * @returns VERR_PROCESS_RUNNING when the RTPROCWAIT_FLAG_NOBLOCK and the process haven't exited yet. 234 * @returns VERR_INTERRUPTED when the wait was interrupted by the arrival of a signal or other async event. 237 * @returns VERR_PROCESS_RUNNING when the RTPROCWAIT_FLAGS_NOBLOCK and the 238 * process haven't exited yet. 239 * @returns VERR_INTERRUPTED when the wait was interrupted by the arrival of a 240 * signal or other async event. 235 241 * 236 242 * @param Process The process to wait for. 237 243 * @param fFlags The wait flags, any of the RTPROCWAIT_FLAGS_ \#defines. 238 244 * @param pProcStatus Where to store the exit status on success. 245 * Optional. 239 246 */ 240 247 RTR3DECL(int) RTProcWaitNoResume(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus);
Note:
See TracChangeset
for help on using the changeset viewer.