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.
@@ -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 6
27
- #define NODE_PATCH_VERSION 1
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 ""
@@ -474,4 +474,10 @@
474
474
  # define UV__EUNATCH (-4023)
475
475
  #endif
476
476
 
477
+ #if defined(ENOEXEC) && !defined(_WIN32)
478
+ # define UV__ENOEXEC UV__ERR(ENOEXEC)
479
+ #else
480
+ # define UV__ENOEXEC (-4022)
481
+ #endif
482
+
477
483
  #endif /* UV_ERRNO_H_ */
@@ -271,7 +271,10 @@ typedef struct {
271
271
 
272
272
  #define UV_UDP_SEND_PRIVATE_FIELDS \
273
273
  struct uv__queue queue; \
274
- struct sockaddr_storage addr; \
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; \
@@ -31,8 +31,8 @@
31
31
  */
32
32
 
33
33
  #define UV_VERSION_MAJOR 1
34
- #define UV_VERSION_MINOR 49
35
- #define UV_VERSION_PATCH 2
34
+ #define UV_VERSION_MINOR 50
35
+ #define UV_VERSION_PATCH 0
36
36
  #define UV_VERSION_IS_RELEASE 1
37
37
  #define UV_VERSION_SUFFIX ""
38
38
 
@@ -20,7 +20,7 @@
20
20
  */
21
21
 
22
22
  #ifndef _WIN32_WINNT
23
- # define _WIN32_WINNT 0x0600
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-aix-ppc64",
3
- "version": "v23.6.1",
3
+ "version": "v23.8.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -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
  .