diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-03-31 09:45:25 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-04-01 17:26:09 +0200 |
commit | 4720f0a66236551dd995a76d8b4e1157e4fbfa9c (patch) | |
tree | 21e96b05829d8cd98e0e9e0f9bd2bf3323a4df02 | |
parent | 2d840b6b77db3ee39f3aed4b37037df6e697b518 (diff) | |
download | rneovim-4720f0a66236551dd995a76d8b4e1157e4fbfa9c.tar.gz rneovim-4720f0a66236551dd995a76d8b4e1157e4fbfa9c.tar.bz2 rneovim-4720f0a66236551dd995a76d8b4e1157e4fbfa9c.zip |
docs(luvref): update to version bump
-rw-r--r-- | runtime/doc/luvref.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/runtime/doc/luvref.txt b/runtime/doc/luvref.txt index 0fdd010880..799d0f6f74 100644 --- a/runtime/doc/luvref.txt +++ b/runtime/doc/luvref.txt @@ -91,7 +91,7 @@ used here to facilitate documenting consistent behavior: metamethod - `buffer`: a `string` or a sequential `table` of `string`s - `threadargs`: variable arguments (`...`) of type `nil`, `boolean`, `number`, - `string`, or `userdata` + `string`, or `userdata`; number of arguments limited to 9. ============================================================================== CONTENTS *luv-contents* @@ -2576,7 +2576,7 @@ uv.fs_poll_start({fs_poll}, {path}, {interval}, {callback}) *uv.fs_poll_start()* > method form `fs_poll:start(path, interval, callback)` Parameters: - - `fs_event`: `uv_fs_event_t userdata` + - `fs_poll`: `uv_fs_poll_t userdata` - `path`: `string` - `interval`: `integer` - `callback`: `callable` @@ -3484,6 +3484,9 @@ uv.new_thread([{options}, ] {entry}, {...}) *uv.new_thread()* Returns: `luv_thread_t userdata` or `fail` + Note: unsafe, please make sure that the thread's end of life + is before Lua state is closed. + uv.thread_equal({thread}, {other_thread}) *uv.thread_equal()* > method form `thread:equal(other_thread)` |