summaryrefslogtreecommitdiff
path: root/file_io
Commit message (Expand)AuthorAgeFilesLines
* Set file/socket descriptor to -1 before close(), so that there is no chancebojan2009-11-011-2/+9
* TMPDIR is the canonical prefered envvar to usejim2009-09-251-2/+2
* OS/2: Add "not implemented" stub for apr_file_link() as OS/2 doesn't supportbjh2009-09-091-0/+23
* Link again on OS X, where fdatasync() does not seem to exist.striker2009-07-111-0/+4
* lowercase include since this breaks MingW cross-compile on Linux;fuankg2009-06-231-1/+1
* Right now OS/2 file sync functions are not implemented.bojan2009-06-151-2/+2
* Add apr_file_sync() and apr_file_datasync() calls.bojan2009-06-143-0/+76
* Retain the INHERIT/NOCLEANUP flags of new_file in apr_file_dup2().bojan2009-06-111-2/+2
* Only set CLOEXEC on dup() if both NOCLEANUP and INHERIT flags are clear.bojan2009-03-031-2/+2
* * One missing unroll of APR_SET_FD_CLOEXEC.rpluem2009-02-271-2/+11
* Unroll APR_SET_FD_CLOEXEC macro.bojan2009-02-273-4/+35
* fix unused variable warning for builds without HAVE_DUP3trawick2009-02-271-1/+4
* On windows files != sockets, so do notmturk2009-02-263-7/+14
* Set CLOEXEC flags where appropriate. Either use new O_CLOEXEC flag andbojan2009-02-264-2/+29
* Do not close the original if the apr_os_file_put fails.mturk2009-02-201-3/+0
* On busy systems the accept can be delayed, so use the select and wait untill ...mturk2009-02-191-3/+21
* Add close function for file_socket_pipe. The standard apr_file_close coresmturk2009-02-121-16/+20
* Fix documentation for apr_temp_dir_get().bojan2009-01-061-3/+2
* Fix a bug with the APR_DELONCLOSE flag. Child processes were (also)gstein2008-11-101-4/+6
* Moved new apr_file_link() function to open.c for all platformstdonovan2008-07-253-13/+14
* Add apr_file_link() function.bojan2008-07-252-0/+40
* Correct Win9x/ANSI mode flaw uncovered by Friedrich Dominicuswrowe2008-07-151-2/+2
* Reduce the point at which we use long filename manipulation to 248wrowe2008-05-061-2/+5
* Rework possibly non-portable constant expressionbojan2008-04-251-2/+7
* Remove APR_BUFSIZ definition, as it would only be used in one placebojan2008-04-251-1/+2
* Make copy buffer biggerbojan2008-04-241-1/+1
* Implement apr_file_socket_pipe_create for windows. Private for implementing p...mturk2008-04-181-0/+183
* * Add missing semi-colon in Win9x code path of apr_file_open that breaksrpluem2008-01-301-1/+1
* Fix two typos, I had continued to simplify this throughoutwrowe2007-11-081-9/+6
* Learn the appropriate csize Allocation magic applicablewrowe2007-11-082-10/+27
* Now in 1.3.0 a valid csize becomes very critical to enablewrowe2007-11-061-4/+41
* OS/2: Make opened files non-inheritable.bjh2007-10-301-3/+30
* AIX C compiler won't add to void * in picky modetrawick2007-10-291-1/+1
* Pick up AIX 5.2 onwardswrowe2007-10-171-0/+6
* Fill in apr_fileinfo_t member st_csize on Netware and Unixwrowe2007-10-172-12/+37
* Here is the correct cast for signed-ness where size_t is off_twrowe2007-10-141-1/+1
* * Return APR_SUCCESS by default.rpluem2007-10-143-0/+6
* Small cut and paste 'feature'. (Ok, can't be a feature if it doesn't even co...wrowe2007-10-143-9/+3
* Fix read, if we successfully cancel it's operation aborted.wrowe2007-10-141-2/+5
* Had inverted read/write.wrowe2007-10-143-9/+9
* Enhance our file_io in APR 1.3 with apr_file_pipe_create_ex(),wrowe2007-10-144-29/+101
* Fix bug identified by testlfs; Win32 didn't handle bufferedwrowe2007-10-141-3/+2
* With the tests committed, introduce Win32 APR_FOPEN_SPARSE handlingwrowe2007-10-141-6/+61
* Group of two changes; we must keep file->flags in sync whenwrowe2007-10-122-38/+40
* apr_file_write() on Windows: Fix return code when writing to a non-trawick2007-10-081-1/+1
* Introduce APR_NO_FILE as an option for any of the three stdio streamswrowe2007-09-282-54/+95
* Correctly handle completion-based read-to-EOF case.wrowe2007-09-011-0/+3
* Proposed;wrowe2007-08-261-1/+9
* In Mac OS X's VFS API file names are, by definition, canonicallyjim2007-08-131-0/+4
* Rework apr_file_writev_full so it tries to writev() data before resorting todavi2007-07-061-3/+29