Skip to content

Commit

Permalink
deps: upgrade libuv to v0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Mar 28, 2013
1 parent dea0634 commit 1b5ec03
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions deps/uv/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
2013.02.04, Version 0.10.3 (Stable)

Changes since version 0.10.2:

* include: remove extraneous const from uv_version() (Ben Noordhuis)

* doc: update README, replace `OS` by `PLATFORM` (Ben Noordhuis)

* build: simplify .buildstamp rule (Ben Noordhuis)

* build: disable -Wstrict-aliasing on darwin (Ben Noordhuis)

* darwin: don't select(&exceptfds) in fallback path (Ben Noordhuis)

* unix: don't clear flags after closing UDP handle (Saúl Ibarra Corretgé)


2013.03.25, Version 0.10.2 (Stable)

This is the first officially versioned release of libuv. Starting now
Expand Down
1 change: 0 additions & 1 deletion deps/uv/src/unix/udp.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ void uv__udp_finish_close(uv_udp_t* handle) {
}

/* Now tear down the handle. */
handle->flags = 0;
handle->recv_cb = NULL;
handle->alloc_cb = NULL;
/* but _do not_ touch close_cb */
Expand Down
2 changes: 1 addition & 1 deletion deps/uv/src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#define UV_VERSION_MAJOR 0
#define UV_VERSION_MINOR 10
#define UV_VERSION_PATCH 3
#define UV_VERSION_IS_RELEASE 0
#define UV_VERSION_IS_RELEASE 1


#define UV_VERSION ((UV_VERSION_MAJOR << 16) | \
Expand Down
1 change: 1 addition & 0 deletions deps/uv/test/test-udp-send-and-recv.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ static uv_buf_t alloc_cb(uv_handle_t* handle, size_t suggested_size) {

static void close_cb(uv_handle_t* handle) {
CHECK_HANDLE(handle);
ASSERT(uv_is_closing(handle));
close_cb_called++;
}

Expand Down

0 comments on commit 1b5ec03

Please sign in to comment.