[llvm-commits] CVS: llvm/include/Support/SystemUtils.h

Misha Brukman brukman at cs.uiuc.edu
Mon Sep 29 17:39:02 PDT 2003


Changes in directory llvm/include/Support:

SystemUtils.h updated: 1.5 -> 1.6

---
Log message:

Tersified and fixed whitespace (tabs -> spaces).


---
Diffs of the changes:

Index: llvm/include/Support/SystemUtils.h
diff -u llvm/include/Support/SystemUtils.h:1.5 llvm/include/Support/SystemUtils.h:1.6
--- llvm/include/Support/SystemUtils.h:1.5	Wed Sep 17 14:02:49 2003
+++ llvm/include/Support/SystemUtils.h	Mon Sep 29 17:37:57 2003
@@ -21,7 +21,7 @@
 /// in the PATH.  If the executable cannot be found, return an empty string.
 /// 
 std::string FindExecutable(const std::string &ExeName,
-			   const std::string &ProgramPath);
+                           const std::string &ProgramPath);
 
 /// RunProgramWithTimeout - This function executes the specified program, with
 /// the specified null-terminated argument array, with the stdin/out/err fd's
@@ -30,16 +30,12 @@
 /// It returns the return value of the program, or -1 if a timeout is detected.
 ///
 int RunProgramWithTimeout(const std::string &ProgramPath, const char **Args,
-			  const std::string &StdInFile = "",
-			  const std::string &StdOutFile = "",
-			  const std::string &StdErrFile = "");
+                          const std::string &StdInFile = "",
+                          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.
+/// ExecWait - Execute a program with the given arguments and environment and 
+/// wait for it to terminate.
 ///
 int ExecWait (const char * const argv[], const char * const envp[]);
 #endif





More information about the llvm-commits mailing list