Skip to content

Commit

Permalink
Add "detached" member to uv_process_options_t to denote whether a chi…
Browse files Browse the repository at this point in the history
…ld process should spawn detached from its parent.
  • Loading branch information
AvianFlu authored and bnoordhuis committed Feb 24, 2012
1 parent f6c8e78 commit b3e0ad4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/uv.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit b3e0ad4

Please sign in to comment.