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 2c83e79 commit 74a60a7Copy full SHA for 74a60a7
src/backtrace/mod.rs
@@ -67,7 +67,7 @@ pub unsafe fn trace_unsynchronized<F: FnMut(&Frame) -> bool>(mut cb: F) {
67
for i in 0..(1024 * 1024) {
68
(&super::CRITICALLY_IMPORTANT as *const u8)
69
.add(i)
70
- .read_volatile()
+ .read_volatile();
71
}
72
};
73
trace_imp(&mut cb)
src/lib.rs
@@ -154,6 +154,7 @@ impl Drop for Bomb {
154
155
156
157
+/// hello i am documentation o/
158
#[used]
159
pub static CRITICALLY_IMPORTANT: [u8; 1024*1024] = [0; 1024*1024];
160
0 commit comments