diff options
Diffstat (limited to 'crates/windows-kernel-rs')
| -rw-r--r-- | crates/windows-kernel-rs/Cargo.toml | 1 | ||||
| -rw-r--r-- | crates/windows-kernel-rs/src/allocator.rs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/crates/windows-kernel-rs/Cargo.toml b/crates/windows-kernel-rs/Cargo.toml index e8f4660..b361135 100644 --- a/crates/windows-kernel-rs/Cargo.toml +++ b/crates/windows-kernel-rs/Cargo.toml @@ -22,3 +22,4 @@ cty = "0.2" lazy_static = { version = "1.4", features = ["spin_no_std"] } widestring = { version = "0.4", default-features = false, features = ["alloc"]} windows-kernel-sys = { path = "../windows-kernel-sys" } +x86_64 = "0.14.7" diff --git a/crates/windows-kernel-rs/src/allocator.rs b/crates/windows-kernel-rs/src/allocator.rs index 2cb1515..9c9f996 100644 --- a/crates/windows-kernel-rs/src/allocator.rs +++ b/crates/windows-kernel-rs/src/allocator.rs @@ -15,7 +15,7 @@ use crate::version::VersionInfo; /// See issue #52191. #[alloc_error_handler] -fn alloc_error(_: Layout) -> ! { loop {} } // core::panic!() +fn alloc_error(_: Layout) -> ! { loop { x86_64::instructions::hlt() } } lazy_static! { /// The version of Microsoft Windows that is currently running. This is used by |