Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert "docs: add default strerror" | Fedor Indutny | 2016-06-04 | 1 | -1/+0 |
| | | | | This reverts commit 6bec46526bd10e8260519cfa04963b092ba933be. | ||||
* | Revert "doc: mention strerror implementation details" | Fedor Indutny | 2016-06-04 | 1 | -7/+0 |
| | | | | This reverts commit 5fb3b729bb9e96c17f9966d61ac8aeba3c1513c0. | ||||
* | doc: mention strerror implementation details | Fedor Indutny | 2016-06-04 | 1 | -0/+7 |
| | |||||
* | docs: add default strerror | Fedor Indutny | 2016-06-04 | 1 | -0/+1 |
| | |||||
* | api: `uv_link_strerror` | Fedor Indutny | 2016-06-04 | 7 | -5/+76 |
| | |||||
* | readme: add section about left todos | Fedor Indutny | 2016-06-04 | 1 | -0/+5 |
| | |||||
* | readme: add link to implementation guide | Fedor Indutny | 2016-06-04 | 1 | -0/+2 |
| | |||||
* | docs: implementation guide | Fedor Indutny | 2016-06-04 | 1 | -0/+57 |
| | |||||
* | defaults: stop reading on error | Fedor Indutny | 2016-06-04 | 4 | -0/+49 |
| | |||||
* | api: rename default cb | Fedor Indutny | 2016-06-04 | 4 | -19/+19 |
| | |||||
* | src: error or NULL links they happen on close | Fedor Indutny | 2016-06-03 | 2 | -0/+16 |
| | | | | | | | | | | | Right after `uv_link_close()` all links will be unchained, meaning that they `link->parent` is NULL. Instead of crashing on calls like: `uv_link_try_write(link->parent, ...)` Make them return `UV_EFAULT`, indicating that no parent is present anymore. Alternatively, these checks could be done in user code, but it will make it too cumbersome. | ||||
* | test: add test for close protection | Fedor Indutny | 2016-06-03 | 3 | -0/+70 |
| | |||||
* | src: experiment fix | Fedor Indutny | 2016-06-03 | 2 | -16/+10 |
| | |||||
* | src: fix experiment | Fedor Indutny | 2016-06-03 | 1 | -8/+0 |
| | |||||
* | src: more experiments | Fedor Indutny | 2016-06-03 | 2 | -6/+16 |
| | |||||
* | src: fix the close depth tracking for read/alloc | Fedor Indutny | 2016-06-03 | 1 | -6/+6 |
| | |||||
* | src: attempt at non-breaking close_cb | Fedor Indutny | 2016-06-03 | 2 | -27/+91 |
| | |||||
* | observer: fix 0-initialization | Fedor Indutny | 2016-06-02 | 1 | -1/+1 |
| | |||||
* | example: simplify using default methods | Fedor Indutny | 2016-05-31 | 1 | -19/+3 |
| | |||||
* | api: default method implementations | Fedor Indutny | 2016-05-31 | 6 | -58/+134 |
| | |||||
* | api: note about private fields | Fedor Indutny | 2016-05-28 | 1 | -0/+3 |
| | |||||
* | readme: fix markdown | Fedor Indutny | 2016-05-28 | 1 | -0/+1 |
| | |||||
* | docs: links | Fedor Indutny | 2016-05-28 | 1 | -55/+83 |
| | |||||
* | api: test links | Fedor Indutny | 2016-05-28 | 1 | -6/+10 |
| | |||||
* | api: observer, source | Fedor Indutny | 2016-05-28 | 1 | -11/+63 |
| | |||||
* | api: lots of text | Fedor Indutny | 2016-05-28 | 2 | -12/+205 |
| | |||||
* | api: fixapi: fixapi: fixapi: fixapi: fixapi: fixapi: fixapi: fixapi: fix | Fedor Indutny | 2016-05-28 | 1 | -1/+1 |
| | |||||
* | api: save progress | Fedor Indutny | 2016-05-28 | 1 | -5/+145 |
| | |||||
* | docs: improvement | Fedor Indutny | 2016-05-27 | 2 | -45/+27 |
| | |||||
* | api: template for uv_link_observer_t | Fedor Indutny | 2016-05-27 | 1 | -0/+5 |
| | |||||
* | api: inherit structs from uv_link_t | Fedor Indutny | 2016-05-27 | 8 | -90/+122 |
| | |||||
* | example: simplify | Fedor Indutny | 2016-05-27 | 1 | -38/+17 |
| | |||||
* | src: simplify uv_link_close | Fedor Indutny | 2016-05-27 | 6 | -62/+64 |
| | |||||
* | include: close callbacks | Fedor Indutny | 2016-05-27 | 7 | -36/+132 |
| | |||||
* | make: dist | Fedor Indutny | 2016-05-27 | 1 | -1/+5 |
| | |||||
* | example: make | Fedor Indutny | 2016-05-27 | 2 | -1/+8 |
| | |||||
* | readme: use uv_link_propagate_shutdown | Fedor Indutny | 2016-05-27 | 1 | -1/+1 |
| | |||||
* | api: simplify | Fedor Indutny | 2016-05-27 | 3 | -18/+25 |
| | |||||
* | uv_link_t: do not crash on NULL buf | Fedor Indutny | 2016-05-27 | 1 | -1/+2 |
| | |||||
* | include: add `arg` to write/shutdown | Fedor Indutny | 2016-05-27 | 5 | -20/+40 |
| | |||||
* | test: simplify | Fedor Indutny | 2016-05-26 | 1 | -2/+1 |
| | |||||
* | uv_link_t: pass source to write/shutdown | Fedor Indutny | 2016-05-26 | 4 | -20/+31 |
| | |||||
* | gyp: include_dirs=. | Fedor Indutny | 2016-05-26 | 5 | -6/+5 |
| | |||||
* | include: invoke => propagate | Fedor Indutny | 2016-05-26 | 6 | -23/+25 |
| | |||||
* | example: initial | Fedor Indutny | 2016-05-26 | 9 | -17/+210 |
| | |||||
* | readme: some preliminary docs | Fedor Indutny | 2016-05-26 | 1 | -1/+36 |
| | |||||
* | src: move methods to separate read-only structure | Fedor Indutny | 2016-05-26 | 8 | -58/+129 |
| | |||||
* | readme: travis badge | Fedor Indutny | 2016-05-26 | 1 | -0/+1 |
| | |||||
* | travis: initial | Fedor Indutny | 2016-05-26 | 2 | -0/+15 |
| | |||||
* | test: kind of run all | Fedor Indutny | 2016-05-26 | 3 | -5/+19 |
| |