Browse Source

ERR: Added units to SetTimeout documentation.

Brad King 21 years ago
parent
commit
7de6edc686
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Source/kwsys/Process.h.in

+ 4 - 4
Source/kwsys/Process.h.in

@@ -109,10 +109,10 @@ kwsysEXPORT int kwsysProcess_AddCommand(kwsysProcess* cp,
                                         char const* const* command);
 
 /**
- * Set the timeout for the child process.  The timeout period begins
- * when the child is executed.  If the child has not terminated when
- * the timeout expires, it will be killed.  A non-positive (<= 0)
- * value will disable the timeout.
+ * Set the timeout in seconds for the child process.  The timeout
+ * period begins when the child is executed.  If the child has not
+ * terminated when the timeout expires, it will be killed.  A
+ * non-positive (<= 0) value will disable the timeout.
  */
 kwsysEXPORT void kwsysProcess_SetTimeout(kwsysProcess* cp, double timeout);