Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c59370a

Browse filesBrowse files
cjihrigMylesBorins
authored andcommitted
deps: upgrade libuv to 1.10.1
Fixes: #9542 Fixes: #9546 PR-URL: #9647 Reviewed-By: Imran Iqbal <imran@imraniqbal.org> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
1 parent 3585ffa commit c59370a
Copy full SHA for c59370a

File tree

Expand file treeCollapse file tree

14 files changed

+37
-76
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

14 files changed

+37
-76
lines changed
Open diff view settings
Collapse file

‎deps/uv/AUTHORS‎

Copy file name to clipboardExpand all lines: deps/uv/AUTHORS
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,3 +277,4 @@ Alex Hultman <alexhultman@gmail.com>
277277
Brad King <brad.king@kitware.com>
278278
Philippe Laferriere <laferriere.phil@gmail.com>
279279
Will Speak <lithiumflame@gmail.com>
280+
Hitesh Kanwathirtha <digitalinfinity@gmail.com>
Collapse file

‎deps/uv/ChangeLog‎

Copy file name to clipboardExpand all lines: deps/uv/ChangeLog
+22-1Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
2016.10.25, Version 1.10.0 (Stable)
1+
2016.11.17, Version 1.10.1 (Stable), 2e49e332bdede6db7cf17fa784a902e8386d5d86
2+
3+
Changes since version 1.10.0:
4+
5+
* Now working on version 1.10.1 (cjihrig)
6+
7+
* win: fix anonymous union syntax (Brad King)
8+
9+
* unix: use uv__is_closing everywhere (Santiago Gimeno)
10+
11+
* win: add missing break statement (cjihrig)
12+
13+
* doc: fix wrong man page link for uv_fs_lstat() (Michele Caini)
14+
15+
* win, tty: handle empty buffer in uv_tty_write_bufs (Hitesh Kanwathirtha)
16+
17+
* doc: add cjihrig alternative GPG ID (cjihrig)
18+
19+
* Revert "win,tty: add support for ANSI codes in win10 v1511" (Ben Noordhuis)
20+
21+
22+
2016.10.25, Version 1.10.0 (Stable), c8a373c729b4c9392e0e14fc53cd6b67b3051ab9
223

324
Changes since version 1.9.1:
425

Collapse file

‎deps/uv/MAINTAINERS.md‎

Copy file name to clipboardExpand all lines: deps/uv/MAINTAINERS.md
+1Lines changed: 1 addition & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ libuv is currently managed by the following individuals:
88
* **Bert Belder** ([@piscisaureus](https://github.com/piscisaureus))
99
* **Colin Ihrig** ([@cjihrig](https://github.com/cjihrig))
1010
- GPG key: 94AE 3667 5C46 4D64 BAFA 68DD 7434 390B DBE9 B9C5 (pubkey-cjihrig)
11+
- GPG key: 5735 3E0D BDAA A7E8 39B6 6A1A FF47 D5E4 AD8B 4FDC (pubkey-cjihrig-kb)
1112
* **Fedor Indutny** ([@indutny](https://github.com/indutny))
1213
- GPG key: AF2E EA41 EC34 47BF DD86 FED9 D706 3CCE 19B7 E890 (pubkey-indutny)
1314
* **Imran Iqbal** ([@iWuzHere](https://github.com/iWuzHere))
Collapse file

‎deps/uv/appveyor.yml‎

Copy file name to clipboardExpand all lines: deps/uv/appveyor.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: v1.10.0.build{build}
1+
version: v1.10.1.build{build}
22

33
install:
44
- cinst -y nsis
Collapse file

‎deps/uv/configure.ac‎

Copy file name to clipboardExpand all lines: deps/uv/configure.ac
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414

1515
AC_PREREQ(2.57)
16-
AC_INIT([libuv], [1.10.0], [https://github.com/libuv/libuv/issues])
16+
AC_INIT([libuv], [1.10.1], [https://github.com/libuv/libuv/issues])
1717
AC_CONFIG_MACRO_DIR([m4])
1818
m4_include([m4/libuv-extra-automake-flags.m4])
1919
m4_include([m4/as_case.m4])
Collapse file

‎deps/uv/docs/src/fs.rst‎

Copy file name to clipboardExpand all lines: deps/uv/docs/src/fs.rst
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ API
223223
.. c:function:: int uv_fs_fstat(uv_loop_t* loop, uv_fs_t* req, uv_file file, uv_fs_cb cb)
224224
.. c:function:: int uv_fs_lstat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb)
225225
226-
Equivalent to :man:`stat(2)`, :man:`fstat(2)` and :man:`fstat(2)` respectively.
226+
Equivalent to :man:`stat(2)`, :man:`fstat(2)` and :man:`lstat(2)` respectively.
227227
228228
.. c:function:: int uv_fs_rename(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb)
229229
Collapse file

‎deps/uv/include/uv-version.h‎

Copy file name to clipboardExpand all lines: deps/uv/include/uv-version.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
#define UV_VERSION_MAJOR 1
3434
#define UV_VERSION_MINOR 10
35-
#define UV_VERSION_PATCH 0
35+
#define UV_VERSION_PATCH 1
3636
#define UV_VERSION_IS_RELEASE 1
3737
#define UV_VERSION_SUFFIX ""
3838

Collapse file

‎deps/uv/src/unix/core.c‎

Copy file name to clipboardExpand all lines: deps/uv/src/unix/core.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ uint64_t uv_hrtime(void) {
9898

9999

100100
void uv_close(uv_handle_t* handle, uv_close_cb close_cb) {
101-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
101+
assert(!uv__is_closing(handle));
102102

103103
handle->flags |= UV_CLOSING;
104104
handle->close_cb = close_cb;
Collapse file

‎deps/uv/src/unix/poll.c‎

Copy file name to clipboardExpand all lines: deps/uv/src/unix/poll.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static void uv__poll_stop(uv_poll_t* handle) {
9292

9393

9494
int uv_poll_stop(uv_poll_t* handle) {
95-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
95+
assert(!uv__is_closing(handle));
9696
uv__poll_stop(handle);
9797
return 0;
9898
}
@@ -102,7 +102,7 @@ int uv_poll_start(uv_poll_t* handle, int pevents, uv_poll_cb poll_cb) {
102102
int events;
103103

104104
assert((pevents & ~(UV_READABLE | UV_WRITABLE | UV_DISCONNECT)) == 0);
105-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
105+
assert(!uv__is_closing(handle));
106106

107107
uv__poll_stop(handle);
108108

Collapse file

‎deps/uv/src/unix/signal.c‎

Copy file name to clipboardExpand all lines: deps/uv/src/unix/signal.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ int uv_signal_start(uv_signal_t* handle, uv_signal_cb signal_cb, int signum) {
290290
sigset_t saved_sigmask;
291291
int err;
292292

293-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
293+
assert(!uv__is_closing(handle));
294294

295295
/* If the user supplies signum == 0, then return an error already. If the
296296
* signum is otherwise invalid then uv__signal_register will find out
@@ -434,7 +434,7 @@ static int uv__signal_compare(uv_signal_t* w1, uv_signal_t* w2) {
434434

435435

436436
int uv_signal_stop(uv_signal_t* handle) {
437-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
437+
assert(!uv__is_closing(handle));
438438
uv__signal_stop(handle);
439439
return 0;
440440
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.