File tree 2 files changed +19
-3
lines changed
2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,17 @@ pub trait CommandExt {
32
32
/// the same semantics as the `uid` field.
33
33
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
34
34
fn gid ( & mut self , id : gid_t ) -> & mut process:: Command ;
35
+
36
+ /// Create a new session (cf. `setsid(2)`) for the child process. This means that the child is
37
+ /// the leader of a new process group. The parent process remains the child reaper of the new
38
+ /// process.
39
+ ///
40
+ /// This is not enough to create a daemon process. The *init* process should be the child
41
+ /// reaper of a daemon. This can be achieved if the parent process exit. Moreover, a daemon
42
+ /// should not have a controlling terminal. To acheive this, a session leader (the child) must
43
+ /// spawn another process (the daemon) in the same session.
44
+ #[ unstable( feature = "process_session_leader" , reason = "recently added" ) ]
45
+ fn session_leader ( & mut self , on : bool ) -> & mut process:: Command ;
35
46
}
36
47
37
48
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -45,6 +56,11 @@ impl CommandExt for process::Command {
45
56
self . as_inner_mut ( ) . gid = Some ( id) ;
46
57
self
47
58
}
59
+
60
+ fn session_leader ( & mut self , on : bool ) -> & mut process:: Command {
61
+ self . as_inner_mut ( ) . session_leader = on;
62
+ self
63
+ }
48
64
}
49
65
50
66
/// Unix-specific extensions to `std::process::ExitStatus`
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ pub struct Command {
36
36
pub cwd : Option < CString > ,
37
37
pub uid : Option < uid_t > ,
38
38
pub gid : Option < gid_t > ,
39
- pub detach : bool , // not currently exposed in std::process
39
+ pub session_leader : bool ,
40
40
}
41
41
42
42
impl Command {
@@ -48,7 +48,7 @@ impl Command {
48
48
cwd : None ,
49
49
uid : None ,
50
50
gid : None ,
51
- detach : false ,
51
+ session_leader : false ,
52
52
}
53
53
}
54
54
@@ -302,7 +302,7 @@ impl Process {
302
302
fail ( & mut output) ;
303
303
}
304
304
}
305
- if cfg. detach {
305
+ if cfg. session_leader {
306
306
// Don't check the error of setsid because it fails if we're the
307
307
// process leader already. We just forked so it shouldn't return
308
308
// error, but ignore it anyway.
You can’t perform that action at this time.
0 commit comments