We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59da97d commit 33ee99bCopy full SHA for 33ee99b
src/libstd/sys/redox/process.rs
@@ -116,8 +116,10 @@ impl Command {
116
self.gid = Some(id);
117
}
118
119
- pub unsafe fn pre_exec(&mut self,
120
- f: Box<dyn FnMut() -> io::Result<()> + Send + Sync>) {
+ pub unsafe fn pre_exec(
+ &mut self,
121
+ f: Box<dyn FnMut() -> io::Result<()> + Send + Sync>,
122
+ ) {
123
self.closures.push(f);
124
125
src/libstd/sys/unix/process/process_common.rs
@@ -149,8 +149,10 @@ impl Command {
149
&mut self.closures
150
151
152
153
154
155
156
157
158
0 commit comments