| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add a regression test for the issue where appending to a buffered file | Evgeny Kotkov | 2023-04-12 | 1 | -0/+45 |
| * | Revert r1808456 (Win32: Don't seek to the end when opening files with | Evgeny Kotkov | 2023-04-12 | 1 | -51/+0 |
| * | Remove trailing whitespaces in *.c. | Ivan Zhakov | 2022-11-20 | 1 | -55/+55 |
| * | test/testfile.c: apr_file_datasync() fails with ENOTSUP for streams on macos. | Yann Ylavic | 2022-06-23 | 1 | -0/+4 |
| * | testfile: try to determine how apr_file_datasync() fails for streams on macos. | Yann Ylavic | 2022-06-22 | 1 | -1/+3 |
| * | testfile: don't generate .txt files since it distorts testfnmatch results. | Yann Ylavic | 2021-03-31 | 1 | -8/+8 |
| * | fdatasync() might return EINVAL for special files (i.e. terminal). | Yann Ylavic | 2020-11-20 | 1 | -1/+1 |
| * | Follow up to r1790200: fall back to fsync() if F_FULLFSYNC is not supported | Branko Čibej | 2020-11-12 | 1 | -0/+37 |
| * | testfile: silence -Wstring-plus-int warnings. | Branko Čibej | 2020-05-06 | 1 | -2/+2 |
| * | Added support for recording skipped test cases. | Branko Čibej | 2020-05-06 | 1 | -2/+1 |
| * | Make test work with thread support disabled. | Branko Čibej | 2020-05-06 | 1 | -0/+7 |
| * | Win32: Improve apr_file_read() performance on buffered files by reducing | Evgeny Kotkov | 2018-04-06 | 1 | -0/+365 |
| * | Win32: Don't seek to the end when opening files with APR_FOPEN_APPEND. | Evgeny Kotkov | 2017-09-15 | 1 | -0/+51 |
| * | Win32: Fix a deadlock when appending to locked files (PR50058). | Ivan Zhakov | 2017-08-29 | 1 | -0/+167 |
| * | Win32: Improve apr_file_write() performance on buffered files by reducing | Ivan Zhakov | 2017-08-26 | 1 | -0/+186 |
| * | Fix two issues with apr_file_trunc() for buffered files: | Ivan Zhakov | 2017-03-27 | 1 | -4/+142 |
| * | Win32: Improve apr_file_gets() performance on buffered files by not calling | Ivan Zhakov | 2017-03-02 | 1 | -0/+217 |
| * | Follow-up to r1770471: resolve two compiler warnings in testfile.c. | Ivan Zhakov | 2016-11-19 | 1 | -2/+1 |
| * | Add test for apr_file_open(APR_FOPEN_APPEND). | Ivan Zhakov | 2016-11-19 | 1 | -0/+70 |
| * | stop using deprecated versions of APR_FOPEN_* and APR_FPROT_* | Jeff Trawick | 2014-01-18 | 1 | -34/+37 |
| * | easy fixes for a few warnings about unused variables | Jeff Trawick | 2012-09-23 | 1 | -0/+3 |
| * | Add apr_file_trunc test case. It currently fails for APR_FOPEN_BUFFERED becau... | Mladen Turk | 2010-12-10 | 1 | -0/+57 |
| * | Use the APR_FOPEN_* constants instead of the deprecated APR_* constants | Graham Leggett | 2010-03-02 | 1 | -39/+39 |
| * | Moved new apr_file_link() function to open.c for all platforms | Thomas J. Donovan | 2008-07-25 | 1 | -0/+19 |
| * | Solve two sets of issues, only two possible changes, in one | William A. Rowe Jr | 2007-10-06 | 1 | -21/+22 |
| * | The file pointer position must be recalculated and set when writev()ing to a | Bojan Smojver | 2007-05-11 | 1 | -0/+39 |
| * | * test/testfile.c (test_gets_buffered): Regression test for | Joe Orton | 2007-04-02 | 1 | -0/+24 |
| * | * test/testfile.c (test_writev_buffered): Adjust to avoid breaking | Joe Orton | 2007-03-01 | 1 | -1/+1 |
| * | Fix apr_file_writev when buffering is enabled by forcing a flush, rather than... | Paul Querna | 2007-02-28 | 1 | -0/+32 |
| * | Fix the typo. | Joe Orton | 2006-08-03 | 1 | -1/+1 |
| * | Update license header. | Joe Orton | 2006-08-03 | 1 | -6/+6 |
| * | Fix a host of tests that were using ABTS_INT_EQUAL to compare non-int | William A. Rowe Jr | 2006-02-09 | 1 | -3/+3 |
| * | Fix bug #38438, seeks are broken for files opened for append in xthread | Garrett Rooney | 2006-01-30 | 1 | -0/+51 |
| * | * file_io/unix/seek.c (setptr): Don't ignore errors from | Joe Orton | 2005-10-19 | 1 | -0/+10 |
| * | Add apr-wide definitions and unix implementation of apr_file_buffer_set() and | Colm MacCarthaigh | 2005-10-18 | 1 | -0/+30 |
| * | * file_io/unix/readwrite.c (apr_file_read, apr_file_gets): Handle the | Joe Orton | 2005-08-22 | 1 | -0/+37 |
| * | * file_io/unix/readwrite.c (apr_file_write): Catch apr_file_flush() | Joe Orton | 2005-08-20 | 1 | -0/+32 |
| * | Update copyright year to 2005 and standardize on current copyright owner line. | Justin Erenkrantz | 2005-02-04 | 1 | -1/+2 |
| * | * test/testfile.c (test_writev, test_writev_full): Fix nbytes type. | Joe Orton | 2004-12-13 | 1 | -2/+2 |
| * | * file_io/unix/fullrw.c: Add apr_file_writev_full to ensure an iovec is | Paul Querna | 2004-12-05 | 1 | -0/+37 |
| * | * test/testfile.c: Add a test for apr_file_writev(). | Paul Querna | 2004-12-04 | 1 | -0/+43 |
| * | * file_io/unix/readwrite.c (file_printf_flush): New | Joe Orton | 2004-11-18 | 1 | -0/+33 |
| * | * test/testud.c (get_userdata, get_nonexistkey, post_pool_clear): | Joe Orton | 2004-11-17 | 1 | -3/+5 |
| * | * file_io/unix/readwrite.c (apr_file_puts): Use apr_file_write_full. | Joe Orton | 2004-11-17 | 1 | -0/+47 |
| * | Presently if we fail in apr_assert_success we get the line number for | David Reid | 2004-06-07 | 1 | -6/+6 |
| * | * test/testfile.c (test_readzero): New test. | Joe Orton | 2004-05-24 | 1 | -0/+18 |
| * | Add the line number to the verbose output from abts. This also removes | Ryan Bloom | 2004-05-14 | 1 | -100/+100 |
| * | Move the APR test suite from CuTest to abts. The output is cleaner, | Ryan Bloom | 2004-05-13 | 1 | -146/+146 |
| * | Fix sign error in apr_file_seek(). | Jeff Trawick | 2004-05-04 | 1 | -0/+21 |
| * | Relicense APR under Apache License, Version 2.0 | Justin Erenkrantz | 2004-02-13 | 1 | -49/+10 |