runtime: handle traps on Windows x32. (#1740)

This commit is contained in:
whitequark
2020-05-21 20:07:05 +00:00
committed by GitHub
parent 036c8ec8c5
commit 26ee986c2f
3 changed files with 33 additions and 4 deletions

View File

@@ -2,6 +2,9 @@ cfg_if::cfg_if! {
if #[cfg(all(windows, target_arch = "x86_64"))] {
mod winx64;
pub use self::winx64::*;
} else if #[cfg(all(windows, target_arch = "x86"))] {
mod winx32;
pub use self::winx32::*;
} else if #[cfg(unix)] {
mod systemv;
pub use self::systemv::*;