File tree Expand file tree Collapse file tree 38 files changed +1589
-198
lines changed Open diff view settings
Expand file tree Collapse file tree 38 files changed +1589
-198
lines changed Open diff view settings
Original file line number Diff line number Diff line change 11Aaron Bieber <qbit@deftly.net> <deftly@gmail.com>
22Alan Gutierrez <alan@prettyrobots.com> <alan@blogometer.com>
33Andrius Bentkus <andrius.bentkus@gmail.com> <toxedvirus@gmail.com>
4+ Bert Belder <bertbelder@gmail.com> <i@bertbelder.com>
45Bert Belder <bertbelder@gmail.com> <info@2bs.nl>
56Bert Belder <bertbelder@gmail.com> <user@ChrUbuntu.(none)>
67Brandon Philips <brandon.philips@rackspace.com> <brandon@ifup.org>
Original file line number Diff line number Diff line change @@ -279,3 +279,8 @@ Philippe Laferriere <laferriere.phil@gmail.com>
279279Will Speak <lithiumflame@gmail.com>
280280Hitesh Kanwathirtha <digitalinfinity@gmail.com>
281281Eric Sciple <ersciple@microsoft.com>
282+ jBarz <jBarz@users.noreply.github.com>
283+ muflub <admin@lodle.net>
284+ Daniel Bevenius <daniel.bevenius@gmail.com>
285+ Howard Hellyer <hhellyer@uk.ibm.com>
286+ Chris Araman <chris.araman@fuze.com>
Original file line number Diff line number Diff line change 1+ 2017.02.02, Version 1.11.0 (Stable), 7452ef4e06a4f99ee26b694c65476401534f2725
2+
3+ Changes since version 1.10.2:
4+
5+ * Now working on version 1.10.3 (cjihrig)
6+
7+ * win: added fcntl.h to uv-win.h (Michele Caini)
8+
9+ * unix: move function call out of assert (jBarz)
10+
11+ * fs: cleanup uv__fs_scandir (Santiago Gimeno)
12+
13+ * fs: fix crash in uv_fs_scandir_next (muflub)
14+
15+ * win,signal: fix potential deadlock (Bartosz Sosnowski)
16+
17+ * unix: use async-signal safe functions between fork and exec (jBarz)
18+
19+ * sunos: fix SUNOS_NO_IFADDRS build (Ben Noordhuis)
20+
21+ * zos: make platform functional (John Barboza)
22+
23+ * doc: add repitition qualifier to version regexs (Daniel Bevenius)
24+
25+ * zos: use gyp OS label "os390" on z/OS (John Barboza)
26+
27+ * aix: enable uv_get/set_process_title (Howard Hellyer)
28+
29+ * zos: use built-in proctitle implementation (John Barboza)
30+
31+ * Revert "darwin: use clock_gettime in macOS 10.12" (Chris Araman)
32+
33+ * win,test: don't write uninitialized buffer to tty (Bert Belder)
34+
35+ * win: define ERROR_ELEVATION_REQUIRED for MinGW (Richard Lau)
36+
37+ * aix: re-enable fs watch facility (Gireesh Punathil)
38+
39+
1402017.01.10, Version 1.10.2 (Stable), cb9f579a454b8db592030ffa274ae58df78dbe20
241
342Changes since version 1.10.1:
Original file line number Diff line number Diff line change @@ -316,7 +316,11 @@ test_run_tests_CFLAGS += -D_UNIX03_THREADS \
316316endif
317317
318318if AIX
319- libuv_la_CFLAGS += -D_ALL_SOURCE -D_XOPEN_SOURCE=500 -D_LINUX_SOURCE_COMPAT -D_THREAD_SAFE
319+ libuv_la_CFLAGS += -D_ALL_SOURCE \
320+ -D_XOPEN_SOURCE=500 \
321+ -D_LINUX_SOURCE_COMPAT \
322+ -D_THREAD_SAFE \
323+ -DHAVE_SYS_AHAFS_EVPRODS_H
320324include_HEADERS += include/uv-aix.h
321325libuv_la_SOURCES += src/unix/aix.c
322326endif
@@ -402,8 +406,10 @@ libuv_la_CFLAGS += -D_UNIX03_THREADS \
402406 -qFLOAT=IEEE
403407libuv_la_LDFLAGS += -qXPLINK
404408libuv_la_SOURCES += src/unix/pthread-fixes.c \
405- src/unix/pthread-barrier.c
406- libuv_la_SOURCES += src/unix/os390.c
409+ src/unix/pthread-barrier.c \
410+ src/unix/os390.c \
411+ src/unix/os390-syscalls.c \
412+ src/unix/proctitle.c
407413endif
408414
409415if HAVE_PKG_CONFIG
Original file line number Diff line number Diff line change 1- version : v1.10.2 .build{build}
1+ version : v1.11.0 .build{build}
22
33install :
44 - cinst -y nsis
Original file line number Diff line number Diff line change 3535 'OTHER_CFLAGS' : [ '-Wno-strict-aliasing' ],
3636 },
3737 'conditions' : [
38- ['OS != "zos "' , {
38+ ['OS != "os390 "' , {
3939 'cflags' : [ '-O0' , '-fwrapv' ]
4040 }],
4141 ['OS == "android"' , {
154154 'cflags' : [ '-pthreads' ],
155155 'ldflags' : [ '-pthreads' ],
156156 }],
157- [ 'OS not in "solaris android zos "' , {
157+ [ 'OS not in "solaris android os390 "' , {
158158 'cflags' : [ '-pthread' ],
159159 'ldflags' : [ '-pthread' ],
160160 }],
Original file line number Diff line number Diff line change 1313# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414
1515AC_PREREQ ( 2.57 )
16- AC_INIT ( [ libuv] , [ 1.10.2 ] , [ https://github.com/libuv/libuv/issues] )
16+ AC_INIT ( [ libuv] , [ 1.11.0 ] , [ https://github.com/libuv/libuv/issues] )
1717AC_CONFIG_MACRO_DIR ( [ m4] )
1818m4_include ( [ m4/libuv-extra-automake-flags.m4] )
1919m4_include ( [ m4/as_case.m4] )
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ def get_libuv_version():
2121 with open ('../../include/uv-version.h' ) as f :
2222 data = f .read ()
2323 try :
24- m = re .search (r"""^#define UV_VERSION_MAJOR (\d)$""" , data , re .MULTILINE )
24+ m = re .search (r"""^#define UV_VERSION_MAJOR (\d+ )$""" , data , re .MULTILINE )
2525 major = int (m .group (1 ))
26- m = re .search (r"""^#define UV_VERSION_MINOR (\d)$""" , data , re .MULTILINE )
26+ m = re .search (r"""^#define UV_VERSION_MINOR (\d+ )$""" , data , re .MULTILINE )
2727 minor = int (m .group (1 ))
28- m = re .search (r"""^#define UV_VERSION_PATCH (\d)$""" , data , re .MULTILINE )
28+ m = re .search (r"""^#define UV_VERSION_PATCH (\d+ )$""" , data , re .MULTILINE )
2929 patch = int (m .group (1 ))
3030 m = re .search (r"""^#define UV_VERSION_IS_RELEASE (\d)$""" , data , re .MULTILINE )
3131 is_release = int (m .group (1 ))
Original file line number Diff line number Diff line change 192192
193193.. c:function:: int uv_set_process_title(const char* title)
194194
195- Sets the current process title.
195+ Sets the current process title. On platforms with a fixed size buffer for the
196+ process title the contents of `title` will be copied to the buffer and
197+ truncated if larger than the available space. Other platforms will return
198+ `UV_ENOMEM` if they cannot allocate enough space to duplicate the contents of
199+ `title`.
196200
197201.. c:function:: int uv_resident_set_memory(size_t* rss)
198202
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1818#define _UV_PTHREAD_BARRIER_
1919#include <errno.h>
2020#include <pthread.h>
21+ #if !defined(__MVS__ )
2122#include <semaphore.h> /* sem_t */
23+ #endif
2224
2325#define PTHREAD_BARRIER_SERIAL_THREAD 0x12345
2426
You can’t perform that action at this time.
0 commit comments