node-aix-ppc64 24.1.0 → 24.2.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 +215 -0
- package/README.md +5 -3
- package/bin/node +0 -0
- package/include/node/common.gypi +11 -6
- package/include/node/config.gypi +2 -0
- package/include/node/node.exp +140 -97
- package/include/node/node_version.h +1 -1
- package/include/node/uv/version.h +1 -1
- package/include/node/uv/win.h +5 -2
- package/include/node/uv.h +10 -2
- package/package.json +1 -1
package/include/node/uv/win.h
CHANGED
|
@@ -499,8 +499,11 @@ typedef struct {
|
|
|
499
499
|
union { \
|
|
500
500
|
struct { \
|
|
501
501
|
/* Used for readable TTY handles */ \
|
|
502
|
-
|
|
503
|
-
|
|
502
|
+
union { \
|
|
503
|
+
/* TODO: remove me in v2.x. */ \
|
|
504
|
+
HANDLE unused_; \
|
|
505
|
+
int mode; \
|
|
506
|
+
} mode; \
|
|
504
507
|
uv_buf_t read_line_buffer; \
|
|
505
508
|
HANDLE read_raw_wait; \
|
|
506
509
|
/* Fields used for translating win keystrokes into vt100 characters */ \
|
package/include/node/uv.h
CHANGED
|
@@ -58,6 +58,7 @@ extern "C" {
|
|
|
58
58
|
#include <stddef.h>
|
|
59
59
|
#include <stdio.h>
|
|
60
60
|
#include <stdint.h>
|
|
61
|
+
#include <math.h>
|
|
61
62
|
|
|
62
63
|
/* Internal type, do not use. */
|
|
63
64
|
struct uv__queue {
|
|
@@ -805,10 +806,15 @@ struct uv_tty_s {
|
|
|
805
806
|
typedef enum {
|
|
806
807
|
/* Initial/normal terminal mode */
|
|
807
808
|
UV_TTY_MODE_NORMAL,
|
|
808
|
-
/*
|
|
809
|
+
/*
|
|
810
|
+
* Raw input mode (On Windows, ENABLE_WINDOW_INPUT is also enabled).
|
|
811
|
+
* May become equivalent to UV_TTY_MODE_RAW_VT in future libuv versions.
|
|
812
|
+
*/
|
|
809
813
|
UV_TTY_MODE_RAW,
|
|
810
814
|
/* Binary-safe I/O mode for IPC (Unix-only) */
|
|
811
|
-
UV_TTY_MODE_IO
|
|
815
|
+
UV_TTY_MODE_IO,
|
|
816
|
+
/* Raw input mode. On Windows ENABLE_VIRTUAL_TERMINAL_INPUT is also set. */
|
|
817
|
+
UV_TTY_MODE_RAW_VT
|
|
812
818
|
} uv_tty_mode_t;
|
|
813
819
|
|
|
814
820
|
typedef enum {
|
|
@@ -1585,6 +1591,8 @@ UV_EXTERN int uv_fs_chmod(uv_loop_t* loop,
|
|
|
1585
1591
|
const char* path,
|
|
1586
1592
|
int mode,
|
|
1587
1593
|
uv_fs_cb cb);
|
|
1594
|
+
#define UV_FS_UTIME_NOW (INFINITY)
|
|
1595
|
+
#define UV_FS_UTIME_OMIT (NAN)
|
|
1588
1596
|
UV_EXTERN int uv_fs_utime(uv_loop_t* loop,
|
|
1589
1597
|
uv_fs_t* req,
|
|
1590
1598
|
const char* path,
|