summaryrefslogtreecommitdiffstats
path: root/src/core/async.c
Commit message (Collapse)AuthorAgeFilesLines
* Warnings purge of src/coreMarty Connor2007-07-021-474/+0Star
|
* Added async_block_progress() and default SIGUPDATE handler.Michael Brown2007-01-291-3/+58
|
* When an async operation dies, orphan its children.Michael Brown2007-01-181-35/+74
|
* Added async_uninit() to simplify failure paths.Michael Brown2007-01-181-0/+36
|
* Gave asynchronous operations approximate POSIX signal semantics. ThisMichael Brown2007-01-151-17/+309
| | | | | | | | | | | will enable us to cascade async operations, which is necessary in order to properly support DNS. (For example, an HTTP request may have to redirect to a new location and will have to perform a new DNS lookup, so we can't just rely on doing the name lookup at the time of parsing the initial URL). Anything other than HTTP is probably broken right now; I'll fix the others up asap.
* Missing from previous checkin.Michael Brown2006-05-311-0/+52
This is the core portion of the async I/O interface.