diff options
| author | joboet <jonasboettiger@icloud.com> | 2024-01-11 20:26:06 +0100 | 
|---|---|---|
| committer | joboet <jonasboettiger@icloud.com> | 2024-01-11 20:26:06 +0100 | 
| commit | 411f34b782e4fdf6793962412384bc0bbd8e8c39 (patch) | |
| tree | 0e8f8adc66bdb6bec14dba44a2a9ef1256e42b7d /library/std/src/sys/pal/unix/stack_overflow.rs | |
| parent | cac470cde1dfe56013fe24b35795f465551bb27d (diff) | |
| download | rust-411f34b782e4fdf6793962412384bc0bbd8e8c39.tar.gz rust-411f34b782e4fdf6793962412384bc0bbd8e8c39.zip | |
std: fix module references on UNIX
Diffstat (limited to 'library/std/src/sys/pal/unix/stack_overflow.rs')
| -rw-r--r-- | library/std/src/sys/pal/unix/stack_overflow.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/library/std/src/sys/pal/unix/stack_overflow.rs b/library/std/src/sys/pal/unix/stack_overflow.rs index 3dbab4cc486..923637cbaf2 100644 --- a/library/std/src/sys/pal/unix/stack_overflow.rs +++ b/library/std/src/sys/pal/unix/stack_overflow.rs @@ -55,7 +55,7 @@ mod imp { use libc::{MAP_ANON, MAP_PRIVATE, PROT_NONE, PROT_READ, PROT_WRITE, SIGSEGV}; use crate::sync::atomic::{AtomicBool, AtomicPtr, Ordering}; - use crate::sys::unix::os::page_size; + use crate::sys::pal::unix::os::page_size; use crate::sys_common::thread_info; // Signal handler for the SIGSEGV and SIGBUS handlers. We've got guard pages | 
