diff options
author | Tim Caswell <tim@creationix.com> | 2014-12-04 12:05:21 -0600 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2014-12-05 17:20:53 +0100 |
commit | dfdcfc0c4dc0a1bf8c49aba7e53b5ec590d1c71d (patch) | |
tree | 8e807b41da07c5f78c2a73c55ebf91c998375d95 /docs/src | |
parent | 484a3a92a865b738ff12f9355a65fccaf238caa5 (diff) | |
download | libuv-dfdcfc0c4dc0a1bf8c49aba7e53b5ec590d1c71d.tar.gz libuv-dfdcfc0c4dc0a1bf8c49aba7e53b5ec590d1c71d.zip |
doc: document how to get result of uv_fs_mkdtemp
PR-URL: https://github.com/libuv/libuv/pull/31
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/fs.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/src/fs.rst b/docs/src/fs.rst index 48026b49..cd535f75 100644 --- a/docs/src/fs.rst +++ b/docs/src/fs.rst @@ -191,6 +191,9 @@ API Equivalent to ``mkdtemp(3)``. + .. note:: + The result can be found as a null terminated string at `req->path`. + .. c:function:: int uv_fs_rmdir(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) Equivalent to ``rmdir(2)``. |