rbb 99/04/12 11:04:19
Modified: docs fileio.txt
Log:
Update the file I/O function definitions. This file should define exactly
what each function is, and what it does for file file I/O part of APR now.
Revision Changes Path
1.12 +15 -1 apache-apr/docs/fileio.txt
Index: fileio.txt
===================================================================
RCS file: /home/cvs/apache-apr/docs/fileio.txt,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- fileio.txt 1999/04/09 18:09:26 1.11
+++ fileio.txt 1999/04/12 18:04:19 1.12
@@ -142,7 +142,7 @@
arg 1) The path of the directory to remove.
return) APR_SUCCESS or APR_FAILURE
- apr_ssize_t apr_writev(APRFile, APRIOVec *, APRUInt64)
+ apr_ssize_t apr_writev(apr_file_t, apr_iovec_t *, apr_ssize_t)
Same as apr_write, except it gets the data from the APRIOVec array.
Arguments:
arg 1) File descriptor to write data to
@@ -153,6 +153,20 @@
return) number of bytes written. APR_FAILURE on failure.
Notes: apr_writev will write a complete entry from APRIOVec array before
moving on to the next one.
+
+ apr_status_t apr_valid_file(apr_file_t *)
+ Determine if a file is valid or not
+ Arguments:
+ arg 1) File to check for validity
+ return) APR_SUCCESS or APR_FAILURE
+
+ char * apr_get_filename(apr_file_t *)
+ Get the name of an opened file.
+ Arguments:
+ arg 1) File to get the name of
+ return) filename. NULL on failure
+
+
**************** IMPLEMENTATION DETAILS **************