Added the ExecWait() function.

llvm-svn: 8578
This commit is contained in:
John Criswell 2003-09-17 15:14:25 +00:00
parent 9a99ed1992
commit f13ec35fe1
1 changed files with 8 additions and 0 deletions

View File

@ -34,4 +34,12 @@ int RunProgramWithTimeout(const std::string &ProgramPath, const char **Args,
const std::string &StdOutFile = "",
const std::string &StdErrFile = "");
///
/// Function: ExecWait()
///
/// Description:
/// Execute a program with the given arguments and environment and
/// wait for it to terminate.
///
int ExecWait (char ** argv, char ** envp);
#endif