summaryrefslogtreecommitdiff
path: root/file_io/win32
Commit message (Expand)AuthorAgeFilesLines
* Make file I/O and network I/O writev/sendv APIs consistent.stoddard2000-02-212-19/+2
* CreatePipe() returns 0 on failure, not -1. Return correct error statusstoddard2000-02-181-2/+2
* Pass ap_iovec_t on writev calls.stoddard2000-02-181-0/+11
* Have seperate variable on ap_writev to set the number of iovecs passed instoddard2000-02-182-7/+8
* Update Windows ap_filedup() call to recognise when it is asked to dup2stoddard2000-02-171-13/+23
* APR is creating files by default whenever ap_open is called and the filestoddard2000-02-161-2/+21
* Return APR_ENOTIMPL on Windows if caller attempts dup2.stoddard2000-02-151-6/+3
* Check for DuplicateHandle() failure.stoddard2000-02-151-4/+12
* Fix some Windows APR problems found while trying to get piped logs working.stoddard2000-02-153-9/+22
* Fix indentingstoddard2000-02-011-16/+16
* Return correct error statusstoddard2000-02-011-16/+14
* CloseHandle() returns 0 on failurestoddard2000-02-011-5/+3
* Return correct error status.stoddard2000-02-011-10/+10
* Return correct error statusstoddard2000-02-011-2/+1
* Reimplement ap_stat using native Windows calls. This is good for a 10% perfor...stoddard2000-02-011-7/+66
* Open files for sequential access. This is a file system cache optimizationstoddard2000-02-011-1/+1
* Port Ryan's fix to return errno to the Windows side of the house. Bothstoddard2000-01-171-2/+2
* Update Windows port to new file_io and time specsstoddard2000-01-172-77/+67
* Move Windows project files to tha atticstoddard2000-01-122-177/+0
* What kinda coding style is this?stoddard2000-01-111-68/+68
* Replace missing end-of-comment delimiter.stoddard2000-01-111-1/+2
* Add some comments to clear up some of the fields to windows' ap_file_t.rbb2000-01-051-3/+15
* With this change, error loggin on Win32 works again.rbb1999-12-171-1/+0
* Fix ap_dupfile on Win32. We need to actually duplicate the file, notrbb1999-12-152-3/+6
* It took me a while, but I found the aprlib.def file, and now Apache buildsrbb1999-12-151-1/+2
* Fix some build issues with APR on Windows. I am still getting some warnings,rbb1999-12-151-8/+9
* Add support for ap_open_stderrrbb1999-12-141-0/+19
* Make APR compile on Windows again. The changes that I introduced forrbb1999-12-095-4/+8
* Fix a compile breakstoddard1999-11-071-1/+1
* Plug some memory leaks, and eliminate a little redundant code.manoj1999-11-053-2/+3
* Rewrite ap_fprintf to be uniform on all platforms. This fixes a memorymanoj1999-11-051-13/+4
* Win32 APR: Handle open for append correctly.stoddard1999-11-031-0/+4
* call ap_getfileinfo if the file has not been stat'edstoddard1999-11-021-0/+3
* Make the assumption that a broken pipe signals an EOF condition. If EOF,stoddard1999-11-011-1/+8
* Fix interface of ap_get_os_dir(): it previously modified a localmartin1999-10-231-2/+2
* Return Win32 failure statusstoddard1999-10-211-7/+4
* Should be able to issue ap_put_os_file() with a NULL context provided struct ...stoddard1999-10-201-3/+3
* Fix bug in ap_get_os_filestoddard1999-10-181-1/+1
* Fix a bug in the logic to set/get userdata from ALL apr types. I haverbb1999-10-151-2/+2
* I missed one function when swapping paramters. This fixes it. I think Irbb1999-10-141-2/+2
* Register a clean-up on each file open & make sure all the file_t fields are i...stoddard1999-10-131-2/+7
* ap_fgets() bug fix. Need to reset the file pointer to the next character afte...stoddard1999-10-121-2/+7
* Make sure to use ap_null_cleanup instead of NULL when setting an emptymanoj1999-10-122-2/+4
* Bring the misc code up to the APR parameter order spec. This also fixes a fewrbb1999-10-081-2/+2
* Bring file_io up to the new parameter order for APR. I have decided to dorbb1999-10-065-23/+23
* Update exports to pick-up function name change from Ryan's commit earlier todaystoddard1999-10-051-1/+1
* More argument swaps...stoddard1999-10-053-8/+7
* Simple name change. the function ap_gets has been renamed to ap_fgets.rbb1999-10-041-1/+1
* First patch to re-order function parameters. This one gets the low hangingrbb1999-10-044-6/+6
* Win32: Implement ap_ungetc()stoddard1999-09-301-0/+38