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 81a9b34 commit c8581a0Copy full SHA for c8581a0
src/backends.rs
@@ -3,7 +3,7 @@
3
//! This module should provide `fill_inner` with the signature
4
//! `fn fill_inner(dest: &mut [MaybeUninit<u8>]) -> Result<(), Error>`.
5
//! The function MUST fully initialize `dest` when `Ok(())` is returned;
6
-//! the function may need to use `sanitizer::unpoison` as well.
+//! the function may need to use `unpoison` as well.
7
//! The function MUST NOT ever write uninitialized bytes into `dest`,
8
//! regardless of what value it returns.
9
src/backends/linux_raw.rs
@@ -1,5 +1,4 @@
1
//! Implementation for Linux / Android using `asm!`-based syscalls.
2
-use super::sanitizer;
pub use crate::util::{inner_u32, inner_u64};
use crate::{Error, MaybeUninit};
0 commit comments