rbb 00/11/04 22:09:10
Modified: src/lib/apr/include apr_file_io.h
Log:
Fix a bit of docs with the new pipe timeout code.
Submitted by: Chris Pepper <[EMAIL PROTECTED]>
Revision Changes Path
1.70 +2 -3 apache-2.0/src/lib/apr/include/apr_file_io.h
Index: apr_file_io.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_file_io.h,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- apr_file_io.h 2000/11/04 16:34:50 1.69
+++ apr_file_io.h 2000/11/05 06:09:09 1.70
@@ -597,15 +597,14 @@
/**
* Get the timeout value for a pipe or manipulate the blocking state.
* @param thepipe The pipe we are getting a timeout for.
- * @param timeoutThe timeout value in microseconds. Values < 0 mean wait
- * forever, 0 means do not wait at all.
+ * @param timeout The current timeout value in microseconds.
*/
apr_status_t apr_get_pipe_timeout(apr_file_t *thepipe, apr_interval_time_t
*timeout);
/**
* Set the timeout value for a pipe or manipulate the blocking state.
* @param thepipe The pipe we are setting a timeout on.
- * @param timeoutThe timeout value in microseconds. Values < 0 mean wait
+ * @param timeout The timeout value in microseconds. Values < 0 mean wait
* forever, 0 means do not wait at all.
*/
apr_status_t apr_set_pipe_timeout(apr_file_t *thepipe, apr_interval_time_t
timeout);