We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0642738 commit 3b8f268Copy full SHA for 3b8f268
platform/src/family/windows/libs.rs
@@ -1,4 +1,6 @@
1
-use std::ffi::c_void;
+use crate::libs::{Error, Result};
2
+
3
+use std::ffi::{CStr, c_void};
4
use std::marker::PhantomData;
5
6
pub struct LibraryImpl {}
platform/src/family/windows/signals.rs
@@ -32,7 +32,8 @@ impl crate::SignalOsExt for crate::Signal {
32
"SEGV" => Some(Self(libc::SIGSEGV)),
33
"INT" => Some(Self(libc::SIGINT)),
34
"TERM" => Some(Self(libc::SIGTERM)),
35
- "BREAK" => Some(Self(libc::SIGBREAK)),
+ // TODO: SIGBREAK
36
+ // "BREAK" => Some(Self(libc::SIGBREAK)),
37
"ILL" => Some(Self(libc::SIGILL)),
38
_ => None,
39
}
0 commit comments