| Commit message (Expand) | Author | Age | Files | Lines |
* | rename apr_arch_fileio.h to apr_arch_file_io.h for consistency | thommay | 2003-01-07 | 2 | -2/+2 |
* | Namespace protection for include/arch/ header files | thommay | 2003-01-06 | 4 | -6/+6 |
* | OS/2: In apr_pollset_poll(), set the num value to 0 on error or time out. | bjh | 2003-01-04 | 1 | -1/+1 |
* | Simplify select-based apr_poll to avoid an extra for loop and clear | jorton | 2003-01-03 | 1 | -4/+2 |
* | fix the clearing of the pollset in the select-based implementation | brianp | 2003-01-03 | 1 | -3/+2 |
* | Update copyright notices to 2003. | thommay | 2003-01-01 | 4 | -4/+4 |
* | Fix apr_poll behavior on Darwin/Win32 (now passing testpoll.) | wrowe | 2002-12-31 | 1 | -0/+4 |
* | I forgot the ;. | rbb | 2002-12-24 | 1 | -1/+1 |
* | Fix an infinite loop in apr_poll_socket_clear. | rbb | 2002-12-24 | 1 | -0/+1 |
* | OS/2: Implement apr_pollset_*() | bjh | 2002-09-26 | 1 | -5/+159 |
* | include <alloca.h> on any system that has it, not just on Tru64 | trawick | 2002-09-20 | 1 | -2/+1 |
* | Include alloca.h on Tru64 to ensure that alloca gets redefined to | brianp | 2002-09-09 | 1 | -0/+4 |
* | Bugfix for apr_pollset_remove() | brianp | 2002-09-01 | 1 | -0/+2 |
* | Cleaned up the code for handling invalid descriptor types in apr_poll | brianp | 2002-08-11 | 1 | -7/+9 |
* | OS/2: Add APR_ENOTIMPL stubs for apr_pollset_*() functions so that we can | bjh | 2002-08-09 | 2 | -0/+105 |
* | Changed apr_poll_socket_remove() and apr_poll() to avoid | brianp | 2002-08-07 | 2 | -3/+28 |
* | Set the result array in the select-based version of apr_pollset_poll() | brianp | 2002-08-06 | 1 | -0/+1 |
* | One more update to the pollset API before we start using it | brianp | 2002-08-04 | 1 | -1/+2 |
* | apr_get_netos_error() must be implemented on all platforms. Aren't | wrowe | 2002-08-04 | 1 | -4/+4 |
* | On systems without poll, limit apr_pollset's capacity to | brianp | 2002-08-03 | 1 | -0/+6 |
* | NetWare can't handle mixed descriptor sets. Added code to make sure that | bnicholes | 2002-08-02 | 1 | -4/+55 |
* | fix a compile break on stock FreeBSD 3.4 (gcc 2.7.2.3) | trawick | 2002-08-02 | 1 | -1/+1 |
* | Features, not platforms, correct? | wrowe | 2002-08-02 | 1 | -6/+6 |
* | Cleanup the last emit ... one final fd-as-socket problem. | wrowe | 2002-08-02 | 1 | -0/+4 |
* | We safely ignore palloc failures [we can segv in the allocator]. | wrowe | 2002-08-02 | 1 | -0/+8 |
* | use apr_os_sock_t for socket descriptor variables | brianp | 2002-08-02 | 1 | -26/+7 |
* | Remove the memory leak from the apr_poll implementation. On all systems, | rbb | 2002-08-02 | 1 | -9/+16 |
* | more win32 socket descriptor signedness fixes | brianp | 2002-08-02 | 1 | -5/+5 |
* | One more fix for socket/file incompatibility on win32 | brianp | 2002-08-02 | 1 | -1/+5 |
* | Avoid trying to turn file handles into sockets on win32 (where | brianp | 2002-08-02 | 1 | -2/+14 |
* | c/unsigned int/SOCKET/ for win32 | ianh | 2002-08-02 | 1 | -0/+20 |
* | Remove some assumptions about file descriptors being integers | brianp | 2002-08-02 | 1 | -21/+27 |
* | Added select-based pollset implementation for systems without poll | brianp | 2002-08-01 | 1 | -3/+137 |
* | Added general-purpose pollset API to handle arbitrarily large | brianp | 2002-08-01 | 1 | -0/+113 |
* | Use storage on the stack instead of apr_palloc in apr_poll() | brianp | 2002-07-31 | 1 | -6/+18 |
* | NetWare uses a different select() call if the handle is pipe rather than a so... | bnicholes | 2002-07-16 | 1 | -0/+17 |
* | Nuke a warning due to a function that should have been static AFAICT: | jwoolley | 2002-07-16 | 1 | -1/+1 |
* | Eliminate the one Unix emit, and one of three Win32 emits. | wrowe | 2002-07-15 | 1 | -2/+2 |
* | Fix socket counts after a socket has been removed from the poll set. | bjh | 2002-07-13 | 1 | -3/+5 |
* | Macroized... but no macros | wrowe | 2002-07-13 | 1 | -0/+1 |
* | OS/2: rewrite apr_poll() with the new interface. | bjh | 2002-07-11 | 2 | -104/+71 |
* | Split the apr_poll() implementation from the accessor functions. This | rbb | 2002-07-11 | 5 | -112/+180 |
* | get the new poll code to build on AIX, which for 32-bit builds has some | trawick | 2002-07-11 | 1 | -10/+10 |
* | ignore generated files | trawick | 2002-07-11 | 1 | -0/+4 |
* | fix an apparent bug in the select() implementation of apr_poll() | trawick | 2002-07-11 | 1 | -1/+1 |
* | Get Win32 building again. Doesn't build clean, but at least it builds. | wrowe | 2002-07-11 | 1 | -10/+10 |
* | An attempt at the OS/2 implementation. I have no OS/2 box, so this | rbb | 2002-07-11 | 2 | -0/+193 |
* | Reimplement apr_poll() on Unix. This improves performance by giving the | rbb | 2002-07-11 | 2 | -0/+354 |