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 6059c7b commit 9f8cf8fCopy full SHA for 9f8cf8f
src/lib.rs
@@ -231,7 +231,7 @@ psm_stack_manipulation! {
231
.expect("unreasonably large stack requested") / page_size;
232
let stack_pages = std::cmp::max(1, requested_pages) + 2;
233
let stack_bytes = stack_pages.checked_mul(page_size)
234
- .expect("unreasonably large stack requesteed");
+ .expect("unreasonably large stack requested");
235
236
// Next, there are a couple of approaches to how we allocate the new stack. We take the
237
// most obvious path and use `mmap`. We also `mprotect` a guard page into our
0 commit comments