Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clean up selectors documentation a bit | def | 2015-02-24 | 1 | -4/+9 |
| | |||||
* | Fix typos | Federico Ceratto | 2015-02-15 | 1 | -1/+1 |
| | |||||
* | made a test green | Araq | 2015-02-12 | 1 | -1/+1 |
| | |||||
* | Handle EPOLLHUP to avoid chaos/runaways when using certain file descriptors. | Elie Zedeck | 2015-01-21 | 1 | -1/+1 |
| | | | | A concrete example is pipe file descriptors: they generate EPOLLHUP instead of a EPOLLIN (then 0 bytes read). The loop will run wild if this event is not handled. | ||||
* | Fix: Only handle EPOLLERR as an error event | def | 2015-01-13 | 1 | -2/+0 |
| | | | | | When an EPOLLRDHUP is received with epoll_ctl, there can still be data to be read. So we shouldn't immediately close the socket and abort. | ||||
* | Happy new year! | Guillaume Gelin | 2015-01-06 | 1 | -1/+1 |
| | |||||
* | Handle interrupt on epoll_wait graciously (allows strace to work) | def | 2015-01-04 | 1 | -1/+5 |
| | |||||
* | Close async socket on error (instead of looping on epoll_wait with 100% CPU) | def | 2015-01-04 | 1 | -1/+4 |
| | |||||
* | 'nimfix' improvements; FdSet is TFdSet again | Araq | 2014-09-08 | 1 | -3/+3 |
| | |||||
* | big rename | Araq | 2014-08-27 | 1 | -78/+82 |
| | |||||
* | Many async optimisations. | Dominik Picheta | 2014-07-12 | 1 | -1/+1 |
| | | | | | | | | | * Selectors implementation will now attempt to immediately execute an IO operation instead of waiting for a ready notification. * Removed recursion in asynchttpserver. * Improved buffered implementation of recvLine in asyncnet. * Optimised ``respond`` in asynchttpserver removing a possible "Delayed ACK" situation. | ||||
* | Update selectors.nim | Varriount | 2014-05-25 | 1 | -1/+1 |
| | |||||
* | Update selectors.nim | Varriount | 2014-05-25 | 1 | -4/+33 |
| | | | Fixed selectors.nim on macosx | ||||
* | Fix issue #1134 | Clay Sweetser | 2014-05-24 | 1 | -3/+6 |
| | | | | Adds the necessary imports for selectors under MacOSX | ||||
* | Fixes #1197. | Dominik Picheta | 2014-05-14 | 1 | -8/+28 |
| | |||||
* | Fixes docgen. | Dominik Picheta | 2014-04-15 | 1 | -1/+1 |
| | |||||
* | Add checks for invalid socket when creating sockets. | Dominik Picheta | 2014-04-15 | 1 | -0/+1 |
| | |||||
* | Fixes selectors module on Mac OS X. | Dominik Picheta | 2014-04-06 | 1 | -0/+1 |
| | |||||
* | Selectors module now uses select on operating systems other than Linux. | Dominik Picheta | 2014-04-06 | 1 | -23/+9 |
| | |||||
* | Select implementation in selectors module compiles again. | Dominik Picheta | 2014-04-06 | 1 | -3/+3 |
| | |||||
* | File descriptors are now removed from fds list explicitly in close(). | Dominik Picheta | 2014-03-14 | 1 | -19/+17 |
| | | | | Fixes tasyncawait on linux. | ||||
* | tasyncawait now works on Linux. | Dominik Picheta | 2014-03-11 | 1 | -27/+38 |
| | | | | | | Reworked detection of a file descriptor being closed with epoll (in the case of sockets it is when the remote host disconnects). Ensured that events are only updated when they change. | ||||
* | Fixes to asyncio2 on Linux. | Dominik Picheta | 2014-03-09 | 1 | -8/+18 |
| | |||||
* | Implemented selector support for asyncio2. | Dominik Picheta | 2014-02-22 | 1 | -177/+178 |
| | |||||
* | Epoll now works. | Dominik Picheta | 2013-10-31 | 1 | -26/+47 |
| | |||||
* | Epoll wrapper + selectors module. | Dominik Picheta | 2013-10-31 | 1 | -0/+228 |