Add "detached" member to uv_process_options_t to denote whether a child process should spawn detached from its parent.

This commit is contained in:
Charlie McConnell 2012-02-23 13:06:09 -08:00 committed by Ben Noordhuis
parent f6c8e78db9
commit b3e0ad4db8

View File

@ -1063,6 +1063,12 @@ typedef struct uv_process_options_s {
*/
char* cwd;
/*
* If set, this flag indicates that the child should be spawned in a detached
* state.
*/
int detached;
/*
* TODO describe how this works.
*/