History log of /libuv/ (Results 2976 – 3000 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
8e23b04605-Sep-2013 Brian Kaisner

build: clarify instructions for Windows

Clarified up front that Python must be installed for all Windows builds
and it must be in the path. Simplified the Windows instructions by
rem

build: clarify instructions for Windows

Clarified up front that Python must be installed for all Windows builds
and it must be in the path. Simplified the Windows instructions by
removing the redundant msbuild guidance.

Also added subheadings for each unique build environment.

show more ...

7e5c63c805-Sep-2013 Bert Belder

Now working on v0.10.17

2bce230d05-Sep-2013 Bert Belder

2013.09.06, Version 0.10.16 (Stable)

Changes since version 0.10.15:

* windows: make uv_shutdown() for write-only pipes work (Bert Belder)

* windows: make uv_fs_open() repor

2013.09.06, Version 0.10.16 (Stable)

Changes since version 0.10.15:

* windows: make uv_shutdown() for write-only pipes work (Bert Belder)

* windows: make uv_fs_open() report EINVAL when invalid arguments are
passed (Bert Belder)

* windows: make uv_fs_open() report _open_osfhandle() failure correctly
(Bert Belder)

* windows: make uv_fs_chmod() report errors correctly (Bert Belder)

* windows: wrap multi-statement macros in do..while block (Bert Belder)

show more ...

20e774c605-Sep-2013 Bert Belder

windows/fs: handle _open_osfhandle() failure correctly

Until now we assumed that _open_osfhandle() would set _doserrno on
failure. This assumption was very wrong in one obvious case, nam

windows/fs: handle _open_osfhandle() failure correctly

Until now we assumed that _open_osfhandle() would set _doserrno on
failure. This assumption was very wrong in one obvious case, namely when
the CRT file descriptor table would fill up. In that case errno is set
to EMFILE, but GetLastError() returns zero - which makes sense because
it's not a win32 error but rather a CRT problem.

show more ...

489fb4c905-Sep-2013 Bert Belder

windows/fs: make uv_fs_open() report EINVAL correctly

Before, when the user passed an invalid paramter to uv_fs_open, libuv
would detect this and call SET_REQ_RESULT to set the result va

windows/fs: make uv_fs_open() report EINVAL correctly

Before, when the user passed an invalid paramter to uv_fs_open, libuv
would detect this and call SET_REQ_RESULT to set the result value to -1.
SET_REQ_RESULT then stored whatever error code was returned by
GetLastError(), which would have no relationship to the actual problem,
and might as well be zero.

show more ...

0f3c910c05-Sep-2013 Bert Belder

windows/fs: wrap multi-statement macros in do..while block

faf2c59305-Sep-2013 Bert Belder

windows/fs: handle _open_osfhandle() failure correctly

Until now we assumed that _open_osfhandle() would set _doserrno on
failure. This assumption was very wrong in one obvious case, nam

windows/fs: handle _open_osfhandle() failure correctly

Until now we assumed that _open_osfhandle() would set _doserrno on
failure. This assumption was very wrong in one obvious case, namely when
the CRT file descriptor table would fill up. In that case errno is set
to EMFILE, but GetLastError() returns zero - which makes sense because
it's not a win32 error but rather a CRT problem.

show more ...

812717d005-Sep-2013 Bert Belder

windows/fs: make uv_fs_open() report EINVAL correctly

Before, when the user passed an invalid paramter to uv_fs_open, libuv
would detect this and call SET_REQ_RESULT to set the result va

windows/fs: make uv_fs_open() report EINVAL correctly

Before, when the user passed an invalid paramter to uv_fs_open, libuv
would detect this and call SET_REQ_RESULT to set the result value to -1.
SET_REQ_RESULT then stored whatever error code was returned by
GetLastError(), which would have no relationship to the actual problem,
and might as well be zero.

show more ...

39bef32905-Sep-2013 Bert Belder

windows/fs: wrap multi-statement macros in do..while block

5dad195004-Sep-2013 Ben Noordhuis

Now working on v0.11.14

f5b6db6c04-Sep-2013 Ben Noordhuis

2013.09.05, Version 0.11.13 (Unstable)

Changes since version 0.11.12:

* unix: define _GNU_SOURCE, exposes glibc-isms (Ben Noordhuis)

* windows: check for nonconforming swpr

2013.09.05, Version 0.11.13 (Unstable)

Changes since version 0.11.12:

* unix: define _GNU_SOURCE, exposes glibc-isms (Ben Noordhuis)

* windows: check for nonconforming swprintf arguments (Brent Cook)

* build: include internal headers in source list (Brent Cook)

* include: merge uv_tcp_bind and uv_tcp_bind6 (Ben Noordhuis)

* include: merge uv_tcp_connect and uv_tcp_connect6 (Ben Noordhuis)

* include: merge uv_udp_bind and uv_udp_bind6 (Ben Noordhuis)

* include: merge uv_udp_send and uv_udp_send6 (Ben Noordhuis)

show more ...

08c6ddee03-Sep-2013 Ben Noordhuis

include: merge uv_udp_send and uv_udp_send6

Merge uv_udp_send6() into uv_udp_send(). uv_udp_send() now takes a
const struct sockaddr*.

bcee403e03-Sep-2013 Ben Noordhuis

include: merge uv_udp_bind and uv_udp_bind6

Merge uv_udp_bind6() into uv_udp_bind(). uv_udp_bind() now takes a
const struct sockaddr*.

5c675c4a03-Sep-2013 Ben Noordhuis

include: merge uv_tcp_connect and uv_tcp_connect6

Merge uv_tcp_connect6() into uv_tcp_connect(). uv_tcp_connect() now
takes a const struct sockaddr*.

5fceccc503-Sep-2013 Ben Noordhuis

include: merge uv_tcp_bind and uv_tcp_bind6

Merge uv_tcp_bind6() into uv_tcp_bind(). uv_tcp_bind() now takes a
const struct sockaddr*.

c363cd0d31-Aug-2013 Brent Cook

build: include internal headers in source list

Allows 'make dist-*' targets to generate working tarballs.

fe3a11e031-Aug-2013 Brent Cook

windows: check for nonconforming swprintf arguments

Newer versions of mingw do include the correct API for swprintf.
Check for _CRT_NON_CONFORMING_SWPRINTFS as specified in the swprintf

windows: check for nonconforming swprintf arguments

Newer versions of mingw do include the correct API for swprintf.
Check for _CRT_NON_CONFORMING_SWPRINTFS as specified in the swprintf
documentation:
http://msdn.microsoft.com/en-us/library/ybk95axf(v=vs.90).aspx

show more ...

f3f23b2d01-Sep-2013 Ben Noordhuis

unix: define _GNU_SOURCE, exposes glibc-isms

EAI_NODATA and some other getaddrinfo() error codes are returned by
glibc but not exposed in the headers unless _GNU_SOURCE is defined.

unix: define _GNU_SOURCE, exposes glibc-isms

EAI_NODATA and some other getaddrinfo() error codes are returned by
glibc but not exposed in the headers unless _GNU_SOURCE is defined.

Only define in src/uv-common.c because that's the only file that deals
with EAI_* error codes.

show more ...

3e054c3602-Sep-2013 Ben Noordhuis

Now working on v0.11.13

82d01d5f02-Sep-2013 Ben Noordhuis

2013.09.03, Version 0.11.12 (Unstable)

Changes since version 0.11.11:

* test: fix epoll_wait() usage in test-embed.c (Ben Noordhuis)

* include: uv_alloc_cb now takes uv_buf

2013.09.03, Version 0.11.12 (Unstable)

Changes since version 0.11.11:

* test: fix epoll_wait() usage in test-embed.c (Ben Noordhuis)

* include: uv_alloc_cb now takes uv_buf_t* (Ben Noordhuis)

* include: uv_read{2}_cb now takes const uv_buf_t* (Ben Noordhuis)

* include: uv_ip[46]_addr now takes sockaddr_in* (Ben Noordhuis)

* include: uv_tcp_bind{6} now takes sockaddr_in* (Ben Noordhuis)

* include: uv_tcp_connect{6} now takes sockaddr_in* (Ben Noordhuis)

* include: uv_udp_recv_cb now takes const uv_buf_t* (Ben Noordhuis)

* include: uv_udp_bind{6} now takes sockaddr_in* (Ben Noordhuis)

* include: uv_udp_send{6} now takes sockaddr_in* (Ben Noordhuis)

* include: uv_spawn takes const uv_process_options_t* (Ben Noordhuis)

* include: make uv_write{2} const correct (Ben Noordhuis)

* windows: fix flags assignment in uv_fs_readdir() (Ben Noordhuis)

* windows: fix stray comments (Ben Noordhuis)

* windows: remove unused is_path_dir() function (Ben Noordhuis)

show more ...

76709c6b31-Aug-2013 Ben Noordhuis

windows: remove unused is_path_dir() function

585b6b7d31-Aug-2013 Ben Noordhuis

windows: remove unused variable in tty.c

d8ab41be31-Aug-2013 Ben Noordhuis

windows: fix stray comments

bdc8289731-Aug-2013 Ben Noordhuis

windows: fix flags assignment in uv_fs_readdir()

779b8d8131-Aug-2013 Ben Noordhuis

include: make uv_write{2} const correct

1...<<111112113114115116117118119120>>...218