Browse Source

doc: remove all references to setsid

Fixes #2299.
v0.8.7-release
Erwin van der Koogh 13 years ago
committed by Ben Noordhuis
parent
commit
ccc854d14e
  1. 4
      doc/api/child_process.markdown

4
doc/api/child_process.markdown

@ -119,7 +119,6 @@ See `child_process.fork()` for details.
* `customFds` {Array} **Deprecated** File descriptors for the child to use * `customFds` {Array} **Deprecated** File descriptors for the child to use
for stdio. (See below) for stdio. (See below)
* `env` {Object} Environment key-value pairs * `env` {Object} Environment key-value pairs
* `setsid` {Boolean}
* return: {ChildProcess object} * return: {ChildProcess object}
Launches a new process with the given `command`, with command line arguments in `args`. Launches a new process with the given `command`, with command line arguments in `args`.
@ -228,7 +227,6 @@ See also: `child_process.exec()` and `child_process.fork()`
* `customFds` {Array} **Deprecated** File descriptors for the child to use * `customFds` {Array} **Deprecated** File descriptors for the child to use
for stdio. (See below) for stdio. (See below)
* `env` {Object} Environment key-value pairs * `env` {Object} Environment key-value pairs
* `setsid` {Boolean}
* `encoding` {String} (Default: 'utf8') * `encoding` {String} (Default: 'utf8')
* `timeout` {Number} (Default: 0) * `timeout` {Number} (Default: 0)
* `maxBuffer` {Number} (Default: 200*1024) * `maxBuffer` {Number} (Default: 200*1024)
@ -285,7 +283,6 @@ the child process is killed.
* `customFds` {Array} **Deprecated** File descriptors for the child to use * `customFds` {Array} **Deprecated** File descriptors for the child to use
for stdio. (See below) for stdio. (See below)
* `env` {Object} Environment key-value pairs * `env` {Object} Environment key-value pairs
* `setsid` {Boolean}
* `encoding` {String} (Default: 'utf8') * `encoding` {String} (Default: 'utf8')
* `timeout` {Number} (Default: 0) * `timeout` {Number} (Default: 0)
* `maxBuffer` {Number} (Default: 200*1024) * `maxBuffer` {Number} (Default: 200*1024)
@ -310,7 +307,6 @@ leaner than `child_process.exec`. It has the same options.
* `customFds` {Array} **Deprecated** File descriptors for the child to use * `customFds` {Array} **Deprecated** File descriptors for the child to use
for stdio. (See below) for stdio. (See below)
* `env` {Object} Environment key-value pairs * `env` {Object} Environment key-value pairs
* `setsid` {Boolean}
* `encoding` {String} (Default: 'utf8') * `encoding` {String} (Default: 'utf8')
* `timeout` {Number} (Default: 0) * `timeout` {Number} (Default: 0)
* Return: ChildProcess object * Return: ChildProcess object

Loading…
Cancel
Save