From b3e0ad4db850a76d1d2c722f93402b3b9f453c55 Mon Sep 17 00:00:00 2001 From: Charlie McConnell Date: Thu, 23 Feb 2012 13:06:09 -0800 Subject: [PATCH] Add "detached" member to uv_process_options_t to denote whether a child process should spawn detached from its parent. --- include/uv.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/uv.h b/include/uv.h index 4af154e9..c6b68919 100644 --- a/include/uv.h +++ b/include/uv.h @@ -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. */