node-aix-ppc64 23.6.1 → 23.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +347 -0
- package/LICENSE +35 -1
- package/README.md +6 -8
- package/bin/node +0 -0
- package/include/node/common.gypi +2 -1
- package/include/node/config.gypi +38 -0
- package/include/node/node.exp +1448 -558
- package/include/node/node_version.h +2 -2
- package/include/node/uv/errno.h +6 -0
- package/include/node/uv/unix.h +4 -1
- package/include/node/uv/version.h +2 -2
- package/include/node/uv/win.h +1 -9
- package/include/node/uv.h +12 -0
- package/package.json +1 -1
- package/share/man/man1/node.1 +3 -0
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
#define SRC_NODE_VERSION_H_
|
|
24
24
|
|
|
25
25
|
#define NODE_MAJOR_VERSION 23
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
27
|
-
#define NODE_PATCH_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 8
|
|
27
|
+
#define NODE_PATCH_VERSION 0
|
|
28
28
|
|
|
29
29
|
#define NODE_VERSION_IS_LTS 0
|
|
30
30
|
#define NODE_VERSION_LTS_CODENAME ""
|
package/include/node/uv/errno.h
CHANGED
package/include/node/uv/unix.h
CHANGED
|
@@ -271,7 +271,10 @@ typedef struct {
|
|
|
271
271
|
|
|
272
272
|
#define UV_UDP_SEND_PRIVATE_FIELDS \
|
|
273
273
|
struct uv__queue queue; \
|
|
274
|
-
|
|
274
|
+
union { \
|
|
275
|
+
struct sockaddr addr; \
|
|
276
|
+
struct sockaddr_storage storage; \
|
|
277
|
+
} u; \
|
|
275
278
|
unsigned int nbufs; \
|
|
276
279
|
uv_buf_t* bufs; \
|
|
277
280
|
ssize_t status; \
|
package/include/node/uv/win.h
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
22
|
#ifndef _WIN32_WINNT
|
|
23
|
-
# define _WIN32_WINNT
|
|
23
|
+
# define _WIN32_WINNT 0x0A00
|
|
24
24
|
#endif
|
|
25
25
|
|
|
26
26
|
#if !defined(_SSIZE_T_) && !defined(_SSIZE_T_DEFINED)
|
|
@@ -32,14 +32,6 @@ typedef intptr_t ssize_t;
|
|
|
32
32
|
|
|
33
33
|
#include <winsock2.h>
|
|
34
34
|
|
|
35
|
-
#if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
|
|
36
|
-
typedef struct pollfd {
|
|
37
|
-
SOCKET fd;
|
|
38
|
-
short events;
|
|
39
|
-
short revents;
|
|
40
|
-
} WSAPOLLFD, *PWSAPOLLFD, *LPWSAPOLLFD;
|
|
41
|
-
#endif
|
|
42
|
-
|
|
43
35
|
#ifndef LOCALE_INVARIANT
|
|
44
36
|
# define LOCALE_INVARIANT 0x007f
|
|
45
37
|
#endif
|
package/include/node/uv.h
CHANGED
|
@@ -157,6 +157,7 @@ struct uv__queue {
|
|
|
157
157
|
XX(ESOCKTNOSUPPORT, "socket type not supported") \
|
|
158
158
|
XX(ENODATA, "no data available") \
|
|
159
159
|
XX(EUNATCH, "protocol driver not attached") \
|
|
160
|
+
XX(ENOEXEC, "exec format error") \
|
|
160
161
|
|
|
161
162
|
#define UV_HANDLE_TYPE_MAP(XX) \
|
|
162
163
|
XX(ASYNC, async) \
|
|
@@ -775,6 +776,12 @@ UV_EXTERN int uv_udp_try_send(uv_udp_t* handle,
|
|
|
775
776
|
const uv_buf_t bufs[],
|
|
776
777
|
unsigned int nbufs,
|
|
777
778
|
const struct sockaddr* addr);
|
|
779
|
+
UV_EXTERN int uv_udp_try_send2(uv_udp_t* handle,
|
|
780
|
+
unsigned int count,
|
|
781
|
+
uv_buf_t* bufs[/*count*/],
|
|
782
|
+
unsigned int nbufs[/*count*/],
|
|
783
|
+
struct sockaddr* addrs[/*count*/],
|
|
784
|
+
unsigned int flags);
|
|
778
785
|
UV_EXTERN int uv_udp_recv_start(uv_udp_t* handle,
|
|
779
786
|
uv_alloc_cb alloc_cb,
|
|
780
787
|
uv_udp_recv_cb recv_cb);
|
|
@@ -1288,6 +1295,7 @@ typedef struct {
|
|
|
1288
1295
|
} uv_rusage_t;
|
|
1289
1296
|
|
|
1290
1297
|
UV_EXTERN int uv_getrusage(uv_rusage_t* rusage);
|
|
1298
|
+
UV_EXTERN int uv_getrusage_thread(uv_rusage_t* rusage);
|
|
1291
1299
|
|
|
1292
1300
|
UV_EXTERN int uv_os_homedir(char* buffer, size_t* size);
|
|
1293
1301
|
UV_EXTERN int uv_os_tmpdir(char* buffer, size_t* size);
|
|
@@ -1869,6 +1877,7 @@ UV_EXTERN int uv_gettimeofday(uv_timeval64_t* tv);
|
|
|
1869
1877
|
typedef void (*uv_thread_cb)(void* arg);
|
|
1870
1878
|
|
|
1871
1879
|
UV_EXTERN int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg);
|
|
1880
|
+
UV_EXTERN int uv_thread_detach(uv_thread_t* tid);
|
|
1872
1881
|
|
|
1873
1882
|
typedef enum {
|
|
1874
1883
|
UV_THREAD_NO_FLAGS = 0x00,
|
|
@@ -1898,6 +1907,9 @@ UV_EXTERN int uv_thread_getcpu(void);
|
|
|
1898
1907
|
UV_EXTERN uv_thread_t uv_thread_self(void);
|
|
1899
1908
|
UV_EXTERN int uv_thread_join(uv_thread_t *tid);
|
|
1900
1909
|
UV_EXTERN int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t2);
|
|
1910
|
+
UV_EXTERN int uv_thread_setname(const char* name);
|
|
1911
|
+
UV_EXTERN int uv_thread_getname(uv_thread_t* tid, char* name, size_t size);
|
|
1912
|
+
|
|
1901
1913
|
|
|
1902
1914
|
/* The presence of these unions force similar struct layout. */
|
|
1903
1915
|
#define XX(_, name) uv_ ## name ## _t name;
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -217,6 +217,9 @@ flag is no longer required as WASI is enabled by default.
|
|
|
217
217
|
.It Fl -experimental-wasm-modules
|
|
218
218
|
Enable experimental WebAssembly module support.
|
|
219
219
|
.
|
|
220
|
+
.It Fl -experimental-quic
|
|
221
|
+
Enable the experimental QUIC support.
|
|
222
|
+
.
|
|
220
223
|
.It Fl -force-context-aware
|
|
221
224
|
Disable loading native addons that are not context-aware.
|
|
222
225
|
.
|