Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/neovim/libuv

[DEPRECATED] Nvim 0.6+ uses upstream libuv, not this fork.
https://github.com/neovim/libuv

win,pipe: erase event_handle after deleting pointer

PR-URL: https://github.com/libuv/libuv/pull/2620
Reviewed-By: Saúl Ibarra Corretgé <[email protected]>

7de386c58437dd53591e5bf844330f73f02ab109 authored almost 5 years ago by Jameson Nash <[email protected]>
win,pipe: consolidate overlapped initialization

PR-URL: https://github.com/libuv/libuv/pull/2620
Reviewed-By: Saúl Ibarra Corretgé <[email protected]>

618c9212c2f7868f345b9e335d728181cc8c0c9c authored almost 5 years ago by Elliot Saba <[email protected]>
win,pipe: ensure `req->event_handle` is defined

Previously, this field was being used uninitialized, leading to the
uv_write call returning fail...

56fc3de48ccfa9097574612b89308cb646e9d1d9 authored almost 5 years ago by Elliot Saba <[email protected]>
win: address some style nits

PR-URL: https://github.com/libuv/libuv/pull/2620
Reviewed-By: Saúl Ibarra Corretgé <[email protected]>

a5da270f78679a2a8d834bc6e4b584272d673638 authored almost 5 years ago by Jameson Nash <[email protected]>
win,pipe: DRY/simplify some code paths

PR-URL: https://github.com/libuv/libuv/pull/2620
Reviewed-By: Saúl Ibarra Corretgé <[email protected]>

4fa5fb9f7f4ffe9f7085dc20e1d6ac5a190c243e authored almost 5 years ago by Jameson Nash <[email protected]>
freebsd,linux: add recvmmsg() + sendmmsg() udp implementation

This commits adds support for recvmmsg() and sendmmsg() extensions to
recvmsg() and sendmsg() th...

3d7136639a39db46bc4a9074922559a564e49514 authored almost 5 years ago by Marek Vavrusa <[email protected]>
test: added udp ping benchmark (1,10,100 pingers)

The UDP pummel benchmark does not model usual UDP servers well,
in UDP services like DNS, DHCP o...

56598f3d10fbb48705bba3149c995092d832bb62 authored almost 5 years ago by Marek Vavrusa <[email protected]>
test: fixed udp4_echo_server implementation

It was missing socket binding and the on_recv() callback was wrong.

PR-URL: https://github.com/...

618533b7e3ba4b9e86d870a4ab59f147fa20566b authored almost 5 years ago by Marek Vavrusa <[email protected]>
doc: add erw7 to maintainers

PR-URL: https://github.com/libuv/libuv/pull/2662
Reviewed-By: Ben Noordhuis <[email protected]>...

18ff13c71e5e68066729bc90664f9550bfe5ead4 authored almost 5 years ago by erw7 <[email protected]>
unix: fix error path in uv_setup_args()

Only update the `process_title` struct on success, otherwise it points
to memory libuv doesn't o...

ea3a5318abb318872830f3fdf739aee0e42ed82c authored almost 5 years ago by Ben Noordhuis <[email protected]>
docs: uv_setup_args() may take ownership of argv

PR-URL: https://github.com/libuv/libuv/pull/2668
Reviewed-By: Colin Ihrig <[email protected]>
Re...

fb4c5631325e49363ebe72076a0d422fd9e5e627 authored almost 5 years ago by Ben Noordhuis <[email protected]>
unix: fix size check in uv_get_process_title()

It was checking that the destination buffer was big enough to hold
the total capacity of the pro...

7b28d36056d947e74e2c3347ee9bb04a1f5388c6 authored almost 5 years ago by Ben Noordhuis <[email protected]>
unix: make uv_tcp_keepalive predictable

Current UNIX systems define various defaults for
TCP_KEEPINTVL and TCP_KEEPCNT, which makes the ...

21aff3b4c430e73da8364ddfcec87746689988b4 authored almost 5 years ago by Manuel BACHMANN <[email protected]>
doc: strip ICC profile from 2 jpg files

The embedded color profiles are proprietary data. Considering that
embedding a color profile in ...

fb5a35ee915921a8baf26e02c12ab05853f1b9af authored almost 5 years ago by Dominique Dumont <[email protected]>
Merge #12 from erw7/libuv-v1.34.2

Update to 1.34.2

b899d12b0d56d217f31222da83f8c398355b69ef authored almost 5 years ago by Justin M. Keyes <[email protected]>
freebsd,linux: simplify uv__make_socketpair()

Assume the presence of the SOCK_CLOEXEC flag. It was added in FreeBSD 10
and before Linux 2.6.32...

ab6fc15a16978070239f8eb52f5418076aa8c46c authored almost 5 years ago by Ben Noordhuis <[email protected]>
linux: assume presence of SOCK_CLOEXEC flag

PR-URL: https://github.com/libuv/libuv/pull/2665
Reviewed-By: Santiago Gimeno <santiago.gimeno@g...

13e5b0cf49d914a2d66b0e0c64ea4efcbfcac6c7 authored almost 5 years ago by Ben Noordhuis <[email protected]>
linux: simplify uv__async_eventfd()

Assume the presence of the eventfd2() system call on Linux. It was added
in 2.6.27 and our basel...

dfd64933d55fee97c329a1c13b5d6dac874e295c authored almost 5 years ago by Ben Noordhuis <[email protected]>
unix: fix error handling in uv__make_pipe()

This commit checks that setting the close-on-exec and non-blocking flags
on the file descriptors...

1b92af1343c87567f00c095a420dc2ce8add9d91 authored almost 5 years ago by Ben Noordhuis <[email protected]>
linux: assume the presence of inotify system calls

This lets us get rid of the system call wrappers and simplify
the fs event watcher code a great ...

24d73d065ff3ae43f63db87901dcea64cc504527 authored almost 5 years ago by Ben Noordhuis <[email protected]>
freebsd,linux: simplify uv__make_pipe()

Assume the presence of the pipe2() system call. It was added
in FreeBSD 10 and Linux 2.6.27.

PR...

233490819ca4010d0db70a0ae411ae9f73571baa authored almost 5 years ago by Ben Noordhuis <[email protected]>
unix: fix error handling in uv__make_socketpair()

This commit checks that setting the close-on-exec flag on the file
descriptors succeeds, and clo...

06616db3622d97122c161ec4faf6cfbb85a10ab6 authored almost 5 years ago by Ben Noordhuis <[email protected]>
linux: simplify uv__accept()

Assume the presence of the accept4() system call on Linux. It was added
in 2.6.28 and our baseli...

067473ed5cbc247d0f12473bd0e9878b1c5f247d authored almost 5 years ago by Ben Noordhuis <[email protected]>
linux: simplify uv__dup2_cloexec()

Assume the presence of the dup3() system call on Linux. It was added
in 2.6.27 and our baseline ...

0574343b3136342bdbb6dce9a94f172059043bbe authored almost 5 years ago by Ben Noordhuis <[email protected]>
unix: remove support for FreeBSD < 10

PR-URL: https://github.com/libuv/libuv/pull/2663
Reviewed-By: Ben Noordhuis <[email protected]>...

9f1a0520944ebde3dccc3ffe4ee75e908db730e6 authored almost 5 years ago by Saúl Ibarra Corretgé <[email protected]>
build,cmake: improve buil experience

* Add two policies to reduce "regex" if statements
* Add CMAKE_MODULE_PATH for custom CMake modu...

018363a163e8901ac2b90100ee436d9472847ffa authored almost 5 years ago by Isabella Muerte <[email protected]>
Merge tag 'v1.34.2' into nvim

2020.01.24, Version 1.34.2 (Stable)

Changes since version 1.34.1:

* misc: adjust stalebot dead...

6040b3c019a93aa241534f719c7a8d2b9ad0118b authored almost 5 years ago by erw7 <[email protected]>
Revert "Add Ctrl combo mappings and shift tab mapping" (#11)

This reverts commit 4ce452cd24998f27e7a0c3ae0028410fc6d5619d.
4ce452cd causes problems on vario...

f93500ffdc170d7e961f83770fa5b9ed81488c90 authored almost 5 years ago by erw7 <[email protected]>
pipe: disallow listening on an IPC pipe

PR-URL: https://github.com/libuv/libuv/pull/2559
Reviewed-By: Jameson Nash <[email protected]>
R...

a629688008694ed8022269e66826d4d6ec688b83 authored almost 5 years ago by Witold Kręcicki <[email protected]>
test: fix fs_event_watch_dir_recursive flakiness

This test sometimes times out on `macos` because not all the expected events are
received: the c...

1ff84206613e17e4d2242b96e3b6be7288840043 authored almost 5 years ago by Santiago Gimeno <[email protected]>
test,udp6: fix udp_ipv6 test flakiness

We seem to be receiving unrelated network traffic from other libuv
tests. Add some debugging out...

16a05637ef70fdbad3fb0191e174b6f0e77f4bb2 authored almost 5 years ago by Jameson Nash <[email protected]>
ibmi: ensure that pipe backlog is not zero

On IBMi PASE, listen(pipe_fd, backlog=0) leads to "Connection refused" error

PR-URL: https://gi...

1b045d464d5703b97d7fbd5b434454fc60b96915 authored almost 5 years ago by Xu Meng <[email protected]>
ibmi: skip unsupported fs test cases

On IBMi PASE, we need to skip some file permission tests for `root`.
And the file stat of symbol...

ed1dc8537ebcf78d9f26d8c0b40f330be5939ab4 authored almost 5 years ago by Xu Meng <[email protected]>
build: make code compilable for iOS on Xcode

Fixes: https://github.com/libuv/libuv/issues/2638
PR-URL: https://github.com/libuv/libuv/pull/26...

2475296c4ee50f9b144f5781ae7a8e182d1f002a authored almost 5 years ago by ssrlive <[email protected]>
src: android build fix

ip_mreq_source struct are not defined in Android NDK <= 16, regardless
of the API level.

Fixes:...

8270add421c602454a1ccafc8d6947cd4536c754 authored almost 5 years ago by David Carlier <[email protected]>
Now working on version 1.34.3

Fixes: https://github.com/libuv/libuv/issues/2646

3ac654c8a2e467a876fd793e5808f19a09bac051 authored almost 5 years ago by cjihrig <[email protected]>
Add SHA to ChangeLog

a5a6bf7052a41ddfd459b6bceb2f8621008c5b8e authored almost 5 years ago by cjihrig <[email protected]>
2020.01.24, Version 1.34.2 (Stable)

Changes since version 1.34.1:

* misc: adjust stalebot deadlines (Jameson Nash)

* test: fix env...

f868c9ab0c307525a16fff99fd21e32a6ebc3837 authored almost 5 years ago by cjihrig <[email protected]>
unix: handle uv__open_cloexec return value correctly

`uv__open_cloexec()` already returns a libuv error code in case
of failure, and not `-1` like sy...

02e7a78628e5373a17b6b19d0c81cc1d12739aa4 authored almost 5 years ago by Anna Henningsen <[email protected]>
Revert "aix: replace ECONNRESET with EOF if already closed"

This reverts commit ca08b48252230db27592248aef10c2d1779bccce, for the
same reasons that it was r...

8249bd19cf32c099c13b62a492c37da893817bb2 authored almost 5 years ago by Jameson Nash <[email protected]>
osx,fsevent: fix race during uv_loop_close

The mutex also needs to protect the access to the state->loop variable,
since that's owned by th...

c8a3f5c93c0bd10c82bd4c4fb57886bd62fde0fb authored almost 5 years ago by Jameson Nash <[email protected]>
osx,fsevent: clear pointer when deleting it [NFCI]

Set this to NULL just before disposing it to make mistakes more
painfully obvious, hopefully.

P...

07ddcb3052fa2d6c52bde62aa1abab5769ed307a authored almost 5 years ago by Jameson Nash <[email protected]>
ibmi: implement uv_interface_addresses()

On IBMi PASE we need to call Qp2getifaddrs() to get the network
interface configurations. And to...

c68111759dae0e74158a9b43c0fd240b0268fe4e authored almost 5 years ago by Xu Meng <[email protected]>
darwin: stop calling SetApplicationIsDaemon()

It's been reported that calling this function causes the Core Graphics
framework to start report...

6e3e422c2d0720452e3255e29c4e91718b843e19 authored almost 5 years ago by Ben Noordhuis <[email protected]>
test: avoid truncating output lines

If the output data contained a null byte (for example, because it was
really utf16), we'd trunca...

64e5a65bc99ed764045a496924338acbdf12cd01 authored almost 5 years ago by Jameson Nash <[email protected]>
test: fix env-vars flakiness

It has been observed that running the tests via shell script
can cause special environment varia...

6d9e89be8b5fadd91b372c8043ccf2b5cf99ed9d authored almost 5 years ago by cjihrig <[email protected]>
misc: adjust stalebot deadlines

PR-URL: https://github.com/libuv/libuv/pull/2498
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail...

a740889e707aaceb0b9e0ca2420565b316c422d7 authored almost 5 years ago by Jameson Nash <[email protected]>
Now working on version 1.34.2

Fixes: https://github.com/libuv/libuv/issues/2595

33cb9f4a3ff6aa44296690a87af5b781946de13f authored almost 5 years ago by cjihrig <[email protected]>
Add SHA to ChangeLog

9eff868308a849c4d8f2d9fa888b3d0ddb7e1706 authored almost 5 years ago by cjihrig <[email protected]>
2020.01.13, Version 1.34.1 (Stable)

Changes since version 1.34.0:

* unix: fix -Wstrict-aliasing compiler warning (Ben Noordhuis)

*...

8aa5636ec72990bb2856f81e14c95813024a5c2b authored almost 5 years ago by cjihrig <[email protected]>
tty,unix: avoid affecting controlling TTY

Since this re-open logic is supposed to be transparent to the parent
program, this flag helps en...

1399d851b112ad8376ef2a46303e72fd55125439 authored almost 5 years ago by Jameson Nash <[email protected]>
test: fix fs birth time test failure

The test checks that the creation time equals the birth time on systems
that support the notion ...

22ebdc5c35f4fb284e38aa80727cf408ec12ea8c authored almost 5 years ago by Ben Noordhuis <[email protected]>
build: turn on -fno-common to catch regressions

Refs: https://github.com/libuv/libuv/issues/2603
PR-URL: https://github.com/libuv/libuv/pull/260...

c7f99c7ba5c71ef803c3e4598bf98faee7976b62 authored almost 5 years ago by Ben Noordhuis <[email protected]>
test: fix -fno-common build errors

Fixes: https://github.com/libuv/libuv/issues/2603
PR-URL: https://github.com/libuv/libuv/pull/26...

d42a1085837aecbd2b1e3c2a3a764dba58ad205f authored almost 5 years ago by Ben Noordhuis <[email protected]>
win: remove bad assert in uv_loop_close

This assert was stronger than necessary (we assert the actual condition
later in this function)....

623aa05ac775c36c7427fca90205d3bd06949775 authored almost 5 years ago by Jameson Nash <[email protected]>
win,tty: avoid regressions in utf-8 handling

This code already had special handling for decoding utf-8
characters correctly for the UCS-2 con...

3016fbc40b3ca9547ff2a44434fc22407d20340c authored almost 5 years ago by Jameson Nash <[email protected]>
docs: clarify that uv_pipe_t is a pipe

Some people have misread this section to imply that libuv does not
support Unix `pipe` objects, ...

02a36bb3ba6e00068307fa9621e0e54c8337fbb5 authored almost 5 years ago by Jameson Nash <[email protected]>
win: remove abort when non-IFS LSP detection fails

Fixes: https://github.com/libuv/libuv/issues/1425
PR-URL: https://github.com/libuv/libuv/pull/26...

e1fad5a37faceda974be5d9d93ca7e13352e2338 authored almost 5 years ago by virtualyw <[email protected]>
docs: switch from linux.die.net to man7.org

The former was missing `urandom`, while the later is the host site for
https://www.kernel.org/do...

8cb8afe25338580356b0e6a61837b880d2145cce authored almost 5 years ago by Jameson Nash <[email protected]>
docs: fix linkcheck

Prefer https when available, follow permanent redirects, and find
alternate sources for dead lin...

c072a3846df0e54030584a812360dd3ecbb79684 authored almost 5 years ago by Jameson Nash <[email protected]>
unix: squelch fchmod() EPERM on CIFS share

uv_fs_copyfile() calls fchmod() to change the target file's permissions
to the source file's per...

a1af6685b7700e4521a1861e57afc9c8fe99aa0a authored almost 5 years ago by Ben Noordhuis <[email protected]>
docs: fix formatting

Introduced in https://github.com/libuv/libuv/pull/2404
and https://github.com/libuv/libuv/pull/2...

2b79df645657b18b6f584225823b60fe32e6eb9a authored almost 5 years ago by Jameson Nash <[email protected]>
ibmi: fix the CMSG length issue

On IBMi, msg_controllen of struct msghdr can not exceed 256.
The default UV__CMSG_FD_COUNT value...

51a0ae7817aa3b47e52c15efe96c9298e3489945 authored almost 5 years ago by Xu Meng <[email protected]>
docs: delete socks5-proxy sample

It is known to fail asserts and leak memory, making it not particularly
good as sample code. Si...

3596f833e8e2d35bc15a3cdf42c60f057f2e3938 authored almost 5 years ago by Jameson Nash <[email protected]>
test: fix pthread memory leak

When the thread attributes object returned by pthread_getattr_np() is no
longer required, it sho...

bbb8b1ffac30bafaf72544ae1a8f31bab66bee87 authored almost 5 years ago by Trevor Norris <[email protected]>
misc: make more tags "not-stale"

PR-URL: https://github.com/libuv/libuv/pull/2539
Reviewed-By: Ben Noordhuis <[email protected]>

6432886e0d1adb3f76eb0eee55584af4f18ae31f authored almost 5 years ago by Jameson Nash <[email protected]>
unix: suppress -Waddress-of-packed-member warning

Fixes: https://github.com/libuv/libuv/issues/2418
PR-URL: https://github.com/libuv/libuv/pull/25...

5cb8860b45b445ebb3e5961b0e06c720ae0d42f2 authored almost 5 years ago by Ben Noordhuis <[email protected]>
test: disallow running the test suite as root

The test suite is known to have issues when run as root. This
commit prevents the test suite fro...

af45b6ba2f2c506ae18dd24481e24db17b8269e7 authored almost 5 years ago by cjihrig <[email protected]>
unix: pass sysctl size arg using ARRAY_SIZE macro

PR-URL: https://github.com/libuv/libuv/pull/2510
Reviewed-By: Ben Noordhuis <[email protected]>...

2ab3dc1567d67924b634be6f478d25f4528ce574 authored about 5 years ago by David Carlier <[email protected]>
unix: fix -Wunused-but-set-variable warning

PR-URL: https://github.com/libuv/libuv/pull/2517
Reviewed-By: Ben Noordhuis <[email protected]>...

93ca478adb0e5fef9362af3b2d255b49efd1bf3b authored about 5 years ago by George Zhao <[email protected]>
doc: remove binaries for Windows from README

Binaries for Windows was experimental and removed from libuv 1.19.0
onwards.

PR-URL: https://gi...

3e56d99817a94eb0158577925cbc833f1645a460 authored about 5 years ago by Richard Lau <[email protected]>
test: skip uv_(get|set)_process_title on IBMi

uv_(get|set)_process_title is not implemented on IBMi.

PR-URL: https://github.com/libuv/libuv/p...

93634e29042993b465815842c23035c906bc7da0 authored about 5 years ago by Xu Meng <[email protected]>
test: skip some test cases on IBMi

On IBMi, uv_uptime() and uv_fs_event_init() return UV_ENOSYS.
Set NO_FS_EVENTS on IBMi.

PR-URL:...

5b12c313e130cd40958495517396e023ee317748 authored about 5 years ago by Xu Meng <[email protected]>
test: fix test failure under NetBSD and OpenBSD

For the dl api, OpenBSD reports only wrong binary format.
Others are unsupported.

PR-URL: https...

5a88a63b00499846026d07399b358e338b2046b4 authored about 5 years ago by David Carlier <[email protected]>
ibmi: fix the false isatty() issue on IBMi

On IBMi PASE isatty() always returns true for stdin, stdout and stderr.
Use ioctl() instead to i...

e14c56bd902726a577053309eff24941602f26fe authored about 5 years ago by Xu Meng <[email protected]>
Revert "darwin: speed up uv_set_process_title()"

This reverts commit 038eacfbf466f0b51e80b6f5fa9026c7ed767dfb.

It was reported that this change ...

565cdd16bb822a0f02edffcd241a6f9c9e70e78b authored about 5 years ago by Ben Noordhuis <[email protected]>
darwin: assume pthread_setname_np() is available

Stop dlsym-ing the symbol name at run-time, that was only necessary to
support macOS and iOS ver...

d077d066fd323130ed5b46c9871d5aa76abdefca authored about 5 years ago by Ben Noordhuis <[email protected]>
Revert "darwin: assume pthread_setname_np() is available"

This reverts commit bee1bf5dd7de8da316821c32411425f7cf7ab49c.

This is necessary in order to be ...

56f8366873630ea340283f05391aed20353bcbd7 authored about 5 years ago by Ben Noordhuis <[email protected]>
build: remove -pedantic from compiler flags

This flag emits warnings with some versions of gcc that we don't care
about (libuv targets POSIX...

f0923d0251cccfdc53601581e9d438c570ea1d0b authored about 5 years ago by Ben Noordhuis <[email protected]>
unix: cache address of dlsym("mkostemp")

Look up the "mkostemp" symbol once instead of on every call
to uv_fs_mkstemp().

PR-URL: https:/...

a0530ce77ea7c448fcf12d67ce528a8f867922e4 authored about 5 years ago by Ben Noordhuis <[email protected]>
unix: fix -Wstrict-aliasing compiler warning

Fixes: https://github.com/libuv/libuv/issues/2563
PR-URL: https://github.com/libuv/libuv/pull/25...

0d3b487f5d501cf54ebbffe0dbdc79c1b029dd05 authored about 5 years ago by Ben Noordhuis <[email protected]>
Now working on version 1.34.1

Fixes: https://github.com/libuv/libuv/issues/2538

d01f0500996149d6acf8d3805bd39285dfa656be authored about 5 years ago by cjihrig <[email protected]>
Add SHA to ChangeLog

d998dc33da9075b7a0b83002f8fb225ba7fe3e6b authored about 5 years ago by cjihrig <[email protected]>
2019.12.05, Version 1.34.0 (Stable)

Changes since version 1.33.1:

* unix: move random-sysctl to random-sysctl-linux (nia)

* netbsd...

15ae750151ac9341e5945eb38f8982d59fb99201 authored about 5 years ago by cjihrig <[email protected]>
zos: fix nanosleep() emulation

* Remove an assert() that wasn't actually being tested because the CI
builds libuv with `-DNDE...

635e0ce6073c5fbc96040e336b364c061441b54b authored about 5 years ago by Ben Noordhuis <[email protected]>
unix: retry on EINTR in uv_sleep()

Reception of a signal makes nanosleep() return prematurely. Restart the
system call when that ha...

7a914e7f3d3d53ccbde50d0933cbaf576720c24e authored about 5 years ago by Ben Noordhuis <[email protected]>
unix: switch uv_sleep() to nanosleep()

Before this commit, uv_sleep() made two library calls: sleep() to sleep
for the requested number...

664f9c00110f58c009a2e4b2e07f45ac6d0f8944 authored about 5 years ago by Ben Noordhuis <[email protected]>
fs: add uv_fs_mkstemp

Thanks to Andreas Hauptmann and Bastian Schmitz for their earlier work.

Supersedes: https://git...

5500253cac6fb4918aa75bde875794a7bfbdb2f0 authored about 5 years ago by Saúl Ibarra Corretgé <[email protected]>
aix: fix setting of physical addresses

Changes based on code in `src/unix/bsd-ifaddrs.c`.

PR-URL: https://github.com/libuv/libuv/pull/...

0a4e0b9d305b53be732470a16cf226904e65faf4 authored about 5 years ago by Richard Lau <[email protected]>
aix: clean up after errors in uv_interface_addresses()

PR-URL: https://github.com/libuv/libuv/pull/2545
Reviewed-By: Ben Noordhuis <[email protected]>

cf6a678fa4b915a23feac0aa35f511c80cb855ee authored about 5 years ago by Richard Lau <[email protected]>
aix: fix netmask for IPv6

Use SIOCGIFNETMASK6 for IPv6 network interfaces.

The SIOCGIFNETMASK and SIOCGIFNETMASK6 ioctl()...

e3d378747c3adc5656daed964f4f66386c3cd551 authored about 5 years ago by Richard Lau <[email protected]>
doc: add richardlau to maintainers

PR-URL: https://github.com/libuv/libuv/pull/2551
Reviewed-By: Ben Noordhuis <[email protected]>...

c6331a42ce50341461668cde55e87667629a6090 authored about 5 years ago by Richard Lau <[email protected]>
unix,win: add uv_sleep()

This commit exposes the uv_sleep() function that previously
only existed in the test runner.

PR...

8c73eee23f15ef11b6ef3b8f8113f78a95794e47 authored about 5 years ago by cjihrig <[email protected]>
fs: handle non-functional statx system call

statx is not implemented on RHEL 7 and trying to call it from within a
docker container might re...

96cfa783a24e154fd3d3124e159aec277537f494 authored about 5 years ago by Milad Farazmand <[email protected]>
build: fix android autotools build

This commit contains an untested change but the sources list was so
woefully incomplete that eve...

f9618443920fd0cbd3ab11c9d37c1f24a7aa1067 authored about 5 years ago by Ben Noordhuis <[email protected]>
build: fix android build, fix symbol redefinition

linux-core defines uv_get_free_memory() and uv_get_total_memory() so
don't include sysinfo-memor...

6de351debeb99cadf7db540b0627845c6be9049d authored about 5 years ago by Ben Noordhuis <[email protected]>
build: fix android build, add missing sources

PR-URL: https://github.com/libuv/libuv/pull/2542
Reviewed-By: Colin Ihrig <[email protected]>
Re...

717bda8b7ee02cd1276f0a5abfb5061674669114 authored about 5 years ago by Ben Noordhuis <[email protected]>
unix: refactor uv__fs_copyfile() logic

The Unix/macOS uv__fs_copyfile() implementation falls back to
using uv_fs_sendfile(). This commi...

780c08a63efb65aed65da57c36f1c5b10f25cc1d authored about 5 years ago by cjihrig <[email protected]>
netbsd: use KERN_ARND sysctl to get entropy

PR-URL: https://github.com/libuv/libuv/pull/2528
Reviewed-By: Ben Noordhuis <[email protected]>...

a62f8ced7af51d1c4fd8abceb521bd24f362ab14 authored about 5 years ago by nia <[email protected]>
unix: move random-sysctl to random-sysctl-linux

PR-URL: https://github.com/libuv/libuv/pull/2528
Reviewed-By: Ben Noordhuis <[email protected]>...

2dcf2e8188f433fb668ffc586ffd485d0ff91059 authored about 5 years ago by nia <[email protected]>