aboutsummaryrefslogtreecommitdiff
path: root/docs/src
Commit message (Collapse)AuthorAge
...
* unix: set non-block mode in uv_{pipe,tcp,udp}_openBen Noordhuis2015-01-14
| | | | | | | | | | | | | | | | | The contract specifies that the file descriptor should already be in non-blocking mode before passing it to libuv. However, node users don't really have an opportunity to do so, never mind the fact that the call to uv_pipe_open() or uv_tcp_open() is an implementation detail that most users won't be aware of. Let's be nice and set the non-blocking flag explicitly. It's a cheap operation anyway. Fixes: https://github.com/libuv/libuv/issues/124 PR: https://github.com/libuv/libuv/pull/134 Reviewed-by: Saúl Ibarra Corretgé <saghul@gmail.com>
* doc: clarify how uv_async_send behavesSaúl Ibarra Corretgé2015-01-07
| | | | | | | Closes #29 PR-URL: https://github.com/libuv/libuv/pull/122 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* doc: clarify the behavior of uv_tty_initSaúl Ibarra Corretgé2015-01-07
| | | | | | | Closes #120 PR-URL: https://github.com/libuv/libuv/pull/121 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* doc: updated version reference for TTY mode changesSaúl Ibarra Corretgé2015-01-05
|
* doc: indicate the version where uv_tty_set_mode was changedSaúl Ibarra Corretgé2014-12-27
| | | | | PR-URL: https://github.com/libuv/libuv/pull/89 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* tty: implement binary I/O terminal modeYuri D'Elia2014-12-27
| | | | | | | | | | Introduce a uv_tty_mode_t enum for uv_tty_set_mode(), with backward compatible values. Add a new mode UV_TTY_MODE_IO, which uses cfmakeraw() internally. PR-URL: https://github.com/libuv/libuv/pull/86 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
* unix: change uv_cwd not to return a trailing slashSaúl Ibarra Corretgé2014-12-16
| | | | | | | | This aligns the behavior with the Windows implementation. PR-URL: https://github.com/libuv/libuv/pull/63 Reviewed-By: Bert Belder <bertbelder@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* doc: fix sphinx warningSaúl Ibarra Corretgé2014-12-11
|
* doc: indicate what version uv_loop_configure was added onSaúl Ibarra Corretgé2014-12-11
| | | | | PR-URL: https://github.com/libuv/libuv/pull/60 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* doc: document uv_loop_configure()Ben Noordhuis2014-12-05
| | | | Move the comments from commit 9da5fd4 from the v0.10 branch into docs/.
* doc: document how to get result of uv_fs_mkdtempTim Caswell2014-12-05
| | | | | PR-URL: https://github.com/libuv/libuv/pull/31 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* doc: fix spellingJoey Geralnik2014-11-29
| | | | | | | Fix various typos and spelling mistakes in the documentation PR-URL: https://github.com/libuv/libuv/pull/17 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* doc: fix typo: Strcutures -> StructuresMichael Ira Krufky2014-11-26
| | | | Signed-off-by: Michael Ira Krufky <m.krufky@samsung.com>
* doc,build,include: update project linksBen Noordhuis2014-11-25
| | | | | The project home has moved from https://github.com/joyent/libuv to https://github.com/libuv/libuv. Update the links inside the repo.
* readme: remove Rust from usersElijah Andrews2014-11-20
| | | | Closes #1572
* doc: fix link in misc.rstManos Nikolaidis2014-11-18
|
* win: fix uv_thread_self()Alexis Campailla2014-11-10
| | | | | | | | | | | 59658a8de7cc05a58327a164fd2ed4b050f8b4f4 changed uv_thread_self() to return uv_thread_t, but uv_thread_t is a thread's HANDLE while uv_thread_self() returns the current thread's id. This means that uv_thread_equal() is also broken, as we are potentially comparing HANDLES to ids. Changed uv_thread_self() to return the current thread's creation handle. Fixed small doc issue.
* doc: fix parameter name in uv_fs_accessSaúl Ibarra Corretgé2014-11-06
| | | | Closes #1560
* unix, windows: add uv_thread_equalTomasz Kołodziejski2014-10-20
|
* unix, windows: add uv_fs_access()cjihrig2014-10-13
|
* doc: add documentation for missing functions and structuresSaúl Ibarra Corretgé2014-10-01
| | | | | | * uv_process_kill, uv_kill * uv_fs_poll_init * uv_timespec_t
* doc: clarify uv_loop_t.data field lifetimeSaúl Ibarra Corretgé2014-09-30
| | | | Fixes #1503
* doc: document missing stream related structuresSaúl Ibarra Corretgé2014-09-30
| | | | | | uv_connect_t, uv_write_t and uv_shutdown_t. Closes #1507
* doc: add migration guide from version 0.10Saúl Ibarra Corretgé2014-09-26
|
* doc: document uv_alloc_cbSaúl Ibarra Corretgé2014-09-25
| | | | Fixes #1498
* fs: rename uv_fs_readdir to uv_fs_scandirSaúl Ibarra Corretgé2014-09-25
| | | | Closes #1431
* version: add ability to specify a version suffixSaúl Ibarra Corretgé2014-09-11
|
* doc: add API documentationSaúl Ibarra Corretgé2014-09-11