mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #22832 from clason/bump-Luv
build(deps): bump luv to HEAD docs(luvref): update to version bump
This commit is contained in:
commit
9084948893
@ -157,8 +157,8 @@ set(LIBTERMKEY_SHA256 6945bd3c4aaa83da83d80a045c5563da4edd7d0374c62c0d35aec09eb3
|
|||||||
set(LIBVTERM_URL https://launchpad.net/libvterm/trunk/v0.3/+download/libvterm-0.3.1.tar.gz)
|
set(LIBVTERM_URL https://launchpad.net/libvterm/trunk/v0.3/+download/libvterm-0.3.1.tar.gz)
|
||||||
set(LIBVTERM_SHA256 25a8ad9c15485368dfd0a8a9dca1aec8fea5c27da3fa74ec518d5d3787f0c397)
|
set(LIBVTERM_SHA256 25a8ad9c15485368dfd0a8a9dca1aec8fea5c27da3fa74ec518d5d3787f0c397)
|
||||||
|
|
||||||
set(LUV_URL https://github.com/luvit/luv/archive/e5da6417db06a09d75bb5315662a2cf3e48a4a89.tar.gz)
|
set(LUV_URL https://github.com/luvit/luv/archive/093a977b82077591baefe1e880d37dfa2730bd54.tar.gz)
|
||||||
set(LUV_SHA256 16720d17b9e6d42a7008b902207ea2d61e3eeaef3cf358398dbbf3777867ec09)
|
set(LUV_SHA256 222b38b6425f0926218e14e7da81481fdde6f9660c1feac25a53e6fb52e886e6)
|
||||||
|
|
||||||
set(LUA_COMPAT53_URL https://github.com/keplerproject/lua-compat-5.3/archive/v0.9.tar.gz)
|
set(LUA_COMPAT53_URL https://github.com/keplerproject/lua-compat-5.3/archive/v0.9.tar.gz)
|
||||||
set(LUA_COMPAT53_SHA256 ad05540d2d96a48725bb79a1def35cf6652a4e2ec26376e2617c8ce2baa6f416)
|
set(LUA_COMPAT53_SHA256 ad05540d2d96a48725bb79a1def35cf6652a4e2ec26376e2617c8ce2baa6f416)
|
||||||
|
@ -91,7 +91,7 @@ used here to facilitate documenting consistent behavior:
|
|||||||
metamethod
|
metamethod
|
||||||
- `buffer`: a `string` or a sequential `table` of `string`s
|
- `buffer`: a `string` or a sequential `table` of `string`s
|
||||||
- `threadargs`: variable arguments (`...`) of type `nil`, `boolean`, `number`,
|
- `threadargs`: variable arguments (`...`) of type `nil`, `boolean`, `number`,
|
||||||
`string`, or `userdata`
|
`string`, or `userdata`; number of arguments limited to 9.
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
CONTENTS *luv-contents*
|
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)`
|
> method form `fs_poll:start(path, interval, callback)`
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
- `fs_event`: `uv_fs_event_t userdata`
|
- `fs_poll`: `uv_fs_poll_t userdata`
|
||||||
- `path`: `string`
|
- `path`: `string`
|
||||||
- `interval`: `integer`
|
- `interval`: `integer`
|
||||||
- `callback`: `callable`
|
- `callback`: `callable`
|
||||||
@ -3484,6 +3484,9 @@ uv.new_thread([{options}, ] {entry}, {...}) *uv.new_thread()*
|
|||||||
|
|
||||||
Returns: `luv_thread_t userdata` or `fail`
|
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()*
|
uv.thread_equal({thread}, {other_thread}) *uv.thread_equal()*
|
||||||
|
|
||||||
> method form `thread:equal(other_thread)`
|
> method form `thread:equal(other_thread)`
|
||||||
|
Loading…
Reference in New Issue
Block a user