From ad1ad4d06d0bffd866f4b4a8c7ea528143963b0d Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Tue, 21 Feb 2017 23:38:42 +0100 Subject: [PATCH] doc: add changelogs for child_process PR-URL: https://github.com/nodejs/node/pull/11489 Reviewed-By: Ben Noordhuis Reviewed-By: Sam Roberts Reviewed-By: Roman Reiss Reviewed-By: James M Snell Reviewed-By: Italo A. Casas --- doc/api/child_process.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 938c3d513b5874..1753b1eaa8c747 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -251,6 +251,10 @@ encoding, `Buffer` objects will be passed to the callback instead. ### child_process.fork(modulePath[, args][, options]) * `modulePath` {String} The module to run in the child @@ -302,6 +306,13 @@ not clone the current process.* ### child_process.spawn(command[, args][, options]) * `command` {String} The command to run @@ -485,6 +496,10 @@ child.unref(); #### options.stdio The `options.stdio` option is used to configure the pipes that are established @@ -574,6 +589,10 @@ configuration at startup. ### child_process.execFileSync(file[, args][, options]) * `file` {String} The name or path of the executable file to run @@ -660,6 +679,13 @@ execution.** ### child_process.spawnSync(command[, args][, options]) * `command` {String} The command to run @@ -911,6 +937,17 @@ grep.stdin.end(); ### child.send(message[, sendHandle[, options]][, callback]) * `message` {Object}