ENH: Made RunSingleCommand take a double as its timeout length.

This commit is contained in:
Brad King 2004-07-02 16:27:46 -04:00
parent b8917c7e6c
commit 40a5bad916
2 changed files with 2 additions and 2 deletions

View File

@ -420,7 +420,7 @@ bool cmSystemTools::RunSingleCommand(
int *retVal, int *retVal,
const char* dir, const char* dir,
bool verbose, bool verbose,
int timeout) double timeout)
{ {
if(s_DisableRunCommandOutput) if(s_DisableRunCommandOutput)
{ {

View File

@ -191,7 +191,7 @@ public:
* function will return false. * function will return false.
*/ */
static bool RunSingleCommand(const char* command, std::string* output = 0, static bool RunSingleCommand(const char* command, std::string* output = 0,
int* retVal = 0, const char* dir = 0, bool verbose = true, int timeout = 0); int* retVal = 0, const char* dir = 0, bool verbose = true, double timeout = 0.0);
/** /**
* Parse arguments out of a single string command * Parse arguments out of a single string command