File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ use super::StartFfiInfo;
6
6
use super :: messages:: { Confirmation , MemEvents , TraceRequest } ;
7
7
8
8
/// The flags to use when calling `waitid()`.
9
- /// Since bitwise or on the nix version of these flags is implemented as a trait,
10
- /// this cannot be const directly so we do it this way
9
+ /// Since bitwise OR on the nix version of these flags is implemented as a trait,
10
+ /// we can't use them directly so we do it this way
11
11
const WAIT_FLAGS : wait:: WaitPidFlag =
12
12
wait:: WaitPidFlag :: from_bits_truncate ( libc:: WUNTRACED | libc:: WEXITED ) ;
13
13
@@ -22,7 +22,7 @@ pub enum ExecEvent {
22
22
End ,
23
23
/// The child process with the specified pid was stopped by the given signal.
24
24
Status ( unistd:: Pid , signal:: Signal ) ,
25
- /// The child process with the specified pid entered or existed a syscall.
25
+ /// The child process with the specified pid entered or exited a syscall.
26
26
Syscall ( unistd:: Pid ) ,
27
27
/// A child process exited or was killed; if we have a return code, it is
28
28
/// specified.
You can’t perform that action at this time.
0 commit comments