summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRyan Graham <r.m.graham@gmail.com>2014-07-08 11:33:50 -0700
committerFedor Indutny <fedor@indutny.com>2014-07-10 15:07:07 +0300
commitfeac62d8d629a2225c93ae5c797efe3a899acba2 (patch)
tree976fd757b3e406e49cd6491dc4d6ecbcb1110a99 /doc
parent245469587c7a6326d1b55bdf6c6d6650d72bfa22 (diff)
downloadandroid-node-v8-feac62d8d629a2225c93ae5c797efe3a899acba2.tar.gz
android-node-v8-feac62d8d629a2225c93ae5c797efe3a899acba2.tar.bz2
android-node-v8-feac62d8d629a2225c93ae5c797efe3a899acba2.zip
doc: remove customFds mentions
The feature has been marked as deprecated since v0.5.11. Signed-off-by: Fedor Indutny <fedor@indutny.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/child_process.markdown9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown
index c8858c1552..2705209312 100644
--- a/doc/api/child_process.markdown
+++ b/doc/api/child_process.markdown
@@ -300,8 +300,6 @@ child process has any open IPC channels with the parent (i.e `fork()`).
* `options` {Object}
* `cwd` {String} Current working directory of the child process
* `stdio` {Array|String} Child's stdio configuration. (See below)
- * `customFds` {Array} **Deprecated** File descriptors for the child to use
- for stdio. (See below)
* `env` {Object} Environment key-value pairs
* `detached` {Boolean} The child will be a process group leader. (See below)
* `uid` {Number} Sets the user identity of the process. (See setuid(2).)
@@ -468,13 +466,6 @@ will not stay running in the background unless it is provided with a `stdio`
configuration that is not connected to the parent. If the parent's `stdio` is
inherited, the child will remain attached to the controlling terminal.
-There is a deprecated option called `customFds` which allows one to specify
-specific file descriptors for the stdio of the child process. This API was
-not portable to all platforms and therefore removed.
-With `customFds` it was possible to hook up the new process' `[stdin, stdout,
-stderr]` to existing streams; `-1` meant that a new stream should be created.
-Use at your own risk.
-
See also: `child_process.exec()` and `child_process.fork()`
## child_process.exec(command, [options], callback)