node-aix-ppc64 22.15.0 → 22.16.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 +243 -0
- package/README.md +4 -0
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +2 -3
- package/include/node/node.exp +13689 -13490
- package/include/node/node.h +8 -1
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +6 -0
package/include/node/node.h
CHANGED
|
@@ -67,7 +67,8 @@
|
|
|
67
67
|
#endif
|
|
68
68
|
|
|
69
69
|
#ifdef _WIN32
|
|
70
|
-
#
|
|
70
|
+
#define SIGQUIT 3
|
|
71
|
+
#define SIGKILL 9
|
|
71
72
|
#endif
|
|
72
73
|
|
|
73
74
|
#include "v8.h" // NOLINT(build/include_order)
|
|
@@ -1386,6 +1387,12 @@ NODE_EXTERN void RequestInterrupt(Environment* env,
|
|
|
1386
1387
|
* I/O from native code. */
|
|
1387
1388
|
NODE_EXTERN async_id AsyncHooksGetExecutionAsyncId(v8::Isolate* isolate);
|
|
1388
1389
|
|
|
1390
|
+
/* Returns the id of the current execution context. If the return value is
|
|
1391
|
+
* zero then no execution has been set. This will happen if the user handles
|
|
1392
|
+
* I/O from native code. */
|
|
1393
|
+
NODE_EXTERN async_id
|
|
1394
|
+
AsyncHooksGetExecutionAsyncId(v8::Local<v8::Context> context);
|
|
1395
|
+
|
|
1389
1396
|
/* Return same value as async_hooks.triggerAsyncId(); */
|
|
1390
1397
|
NODE_EXTERN async_id AsyncHooksGetTriggerAsyncId(v8::Isolate* isolate);
|
|
1391
1398
|
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -168,6 +168,12 @@ Interpret as either ES modules or CommonJS modules input via --eval or STDIN, wh
|
|
|
168
168
|
.js or extensionless files with no sibling or parent package.json;
|
|
169
169
|
.js or extensionless files whose nearest parent package.json lacks a "type" field, unless under node_modules.
|
|
170
170
|
.
|
|
171
|
+
.It Fl -experimental-config-file
|
|
172
|
+
Specifies the configuration file to load.
|
|
173
|
+
.
|
|
174
|
+
.It Fl -experimental-default-config-file
|
|
175
|
+
Enable support for automatically loading node.config.json.
|
|
176
|
+
.
|
|
171
177
|
.It Fl -experimental-import-meta-resolve
|
|
172
178
|
Enable experimental ES modules support for import.meta.resolve().
|
|
173
179
|
.
|