History log of /libuv/ (Results 3076 – 3100 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
85b92ad509-Aug-2013 Ben Noordhuis

windows: fix uninitialized local variable warning

Pass the user-returned buffer to the read calback. Fixes the following
warning:

src\win\tcp.c(439): warning C4700: uninitia

windows: fix uninitialized local variable warning

Pass the user-returned buffer to the read calback. Fixes the following
warning:

src\win\tcp.c(439): warning C4700: uninitialized local variable
'buf'

show more ...

e4c1483b08-Aug-2013 Ben Noordhuis

build: serial-tests was added in automake v1.12

Commit a97685e added a check that tries to ascertain whether the
serial-tests option is supported by automake. It assumed that said
op

build: serial-tests was added in automake v1.12

Commit a97685e added a check that tries to ascertain whether the
serial-tests option is supported by automake. It assumed that said
option was added in automake v1.11 but it turns out that's wrong, it
wasn't added until v1.12. Update the check.

Of course, none of this would have been necessary if the automake people
had simply added a macro that tells you if serial-tests is supported or
not.

show more ...

6837e48008-Aug-2013 Ben Noordhuis

unix: fix missing return value warning in stream.c

d34fad7306-Aug-2013 Ben Noordhuis

Now working on v0.11.8

3cad361f06-Aug-2013 Ben Noordhuis

2013.08.07, Version 0.11.7 (Unstable)

Changes since version 0.11.6:

* unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis)

* unix, windows: remove unused var

2013.08.07, Version 0.11.7 (Unstable)

Changes since version 0.11.6:

* unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis)

* unix, windows: remove unused variables (Brian White)

* test: fix signed/unsigned comparison warnings (Ben Noordhuis)

* build: dtrace shouldn't break out of tree builds (Timothy J. Fontaine)

* unix, windows: don't read/recv if buf.len==0 (Ben Noordhuis)

* build: add mingw makefile (Ben Noordhuis)

* unix, windows: add MAC to uv_interface_addresses() (Brian White)

* build: enable AM_INIT_AUTOMAKE([subdir-objects]) (Ben Noordhuis)

* unix, windows: make buf arg to uv_fs_write const (Ben Noordhuis)

* sunos: fix build breakage introduced in e3a657c (Ben Noordhuis)

* aix: fix build breakage introduced in 3ee4d3f (Ben Noordhuis)

* windows: fix mingw32 build, define JOB_OBJECT_XXX (Yasuhiro Matsumoto)

* windows: fix mingw32 build, include limits.h (Yasuhiro Matsumoto)

* test: replace sprintf() with snprintf() (Ben Noordhuis)

* test: replace strcpy() with strncpy() (Ben Noordhuis)

* openbsd: fix uv_ip6_addr() unused variable warnings (Ben Noordhuis)

* openbsd: fix dlerror() const correctness warning (Ben Noordhuis)

* openbsd: fix uv_fs_sendfile() unused variable warnings (Ben Noordhuis)

* build: disable parallel automake tests (Ben Noordhuis)

* test: add windows-only snprintf() function (Ben Noordhuis)

* build: add automake serial-tests version check (Ben Noordhuis)

show more ...

a97685e705-Aug-2013 Ben Noordhuis

build: add automake serial-tests version check

The serial-tests directive was added in automake v0.11. Add an ad-hoc
version check to find out if it's safe to enable. Fixes the autotools

build: add automake serial-tests version check

The serial-tests directive was added in automake v0.11. Add an ad-hoc
version check to find out if it's safe to enable. Fixes the autotools
build with older versions of automake.

show more ...

fd08290105-Aug-2013 Ben Noordhuis

test: add windows-only snprintf() function

Should fix the build after 96f32a2 inadvertently broke it.

There is no snprintf() on Windows because, hey, it's a C99 addition
and the

test: add windows-only snprintf() function

Should fix the build after 96f32a2 inadvertently broke it.

There is no snprintf() on Windows because, hey, it's a C99 addition
and the people from Redmond, WA are still firmly stuck in 1989.

show more ...

35ea88cf04-Aug-2013 Ben Noordhuis

build: disable parallel automake tests

Our tests are not parallelizable and besides, they're one big test
from the perspective of the automake test driver anyway. Turn on
serial mode.

fb2a6d4a05-Aug-2013 Ben Noordhuis

openbsd: fix uv_fs_sendfile() unused variable warnings

103969ac04-Aug-2013 Ben Noordhuis

openbsd: fix dlerror() const correctness warning

f7e4637904-Aug-2013 Ben Noordhuis

openbsd: fix uv_ip6_addr() unused variable warnings

5af98d3805-Aug-2013 Ben Noordhuis

test: replace strcpy() with strncpy()

96f32a2004-Aug-2013 Ben Noordhuis

test: replace sprintf() with snprintf()

There is zero risk of overflowing the buffer, it's just a good habit.

d7a1ba8501-Aug-2013 Yasuhiro Matsumoto

windows: fix mingw32 build, include limits.h

src/win/process uses INT_MAX so include limits.h.

bfa3e28b01-Aug-2013 Yasuhiro Matsumoto

windows: fix mingw32 build, define JOB_OBJECT_XXX

mingw32 doesn't have the JOB_OBJECT_XXX defines. Provide them ourselves
when they are not already defined.

This is possibly onl

windows: fix mingw32 build, define JOB_OBJECT_XXX

mingw32 doesn't have the JOB_OBJECT_XXX defines. Provide them ourselves
when they are not already defined.

This is possibly only an issue with older versions of mingw32 because
mingw-w64 2.0 _does_ export the defines.

show more ...

4bdb7d8329-Jul-2013 Ben Noordhuis

aix: fix build breakage introduced in 3ee4d3f

Possibly, anyway - this change is untested. Without it, libuv
definitely won't build on AIX though.

167a817329-Jul-2013 Ben Noordhuis

sunos: fix build breakage introduced in e3a657c

0e7ba08029-Jul-2013 Ben Noordhuis

unix, windows: make buf arg to uv_fs_write const

Change the uv_fs_write() prototype so the 'buf' argument is now
`const void*` rather than `void*`.

The argument is stored in a n

unix, windows: make buf arg to uv_fs_write const

Change the uv_fs_write() prototype so the 'buf' argument is now
`const void*` rather than `void*`.

The argument is stored in a non-const field in the uv_fs_t but that's
inconsequential because the memory it points to is not touched.

show more ...

c82cea1e28-Jul-2013 Ben Noordhuis

build: enable AM_INIT_AUTOMAKE([subdir-objects])

Squelches (justified) warnings with automake 1.14.

Object files are built in subdirectories now so fix up the dtrace
postprocess

build: enable AM_INIT_AUTOMAKE([subdir-objects])

Squelches (justified) warnings with automake 1.14.

Object files are built in subdirectories now so fix up the dtrace
postprocessing step to scan for *.lo files in said subdirectories.

Fixes #866.

show more ...

3d4099eb25-Jul-2013 Ben Noordhuis

Merge remote-tracking branch 'origin/v0.10'

Conflicts:
AUTHORS
ChangeLog
src/version.c
src/win/fs.c


2744e1e025-Jul-2013 Timothy J Fontaine

Now working on v0.10.14

381312e125-Jul-2013 Timothy J Fontaine

2013.07.26, Version 0.10.13 (Stable)

Changes since version 0.10.12:

* unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis)

e3a657c620-Jul-2013 Brian White

unix, windows: add MAC to uv_interface_addresses()

Make uv_interface_addresses() return the MAC address as a 48 bits
binary value in the phys_addr field of the uv_interface_address_t

unix, windows: add MAC to uv_interface_addresses()

Make uv_interface_addresses() return the MAC address as a 48 bits
binary value in the phys_addr field of the uv_interface_address_t
struct.

show more ...

977e833725-Jul-2013 Ben Noordhuis

build: add mingw makefile

* add a very simple Makefile.mingw that builds libuv.a
* apply a couple of fixes to src/win so it actually builds with mingw
(mostly missing includes)

build: add mingw makefile

* add a very simple Makefile.mingw that builds libuv.a
* apply a couple of fixes to src/win so it actually builds with mingw
(mostly missing includes)

Fixes #847.

show more ...

1acbd76826-Mar-2013 Ben Noordhuis

unix, windows: don't read/recv if buf.len==0

Make it possible for the libuv user to handle out of memory conditions
gracefully. When alloc_cb() returns a buffer with len==0, call the rea

unix, windows: don't read/recv if buf.len==0

Make it possible for the libuv user to handle out of memory conditions
gracefully. When alloc_cb() returns a buffer with len==0, call the read
or recv callback with nread=UV_ENOBUFS. It's up to the user to stop or
close the handle.

Fixes #752.

show more ...

1...<<121122123124125126127128129130>>...218