Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/interface/errnos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// Error handling for SafePOSIX
use crate::interface;

use std::lazy::SyncOnceCell;
use std::sync::OnceLock;

pub static VERBOSE: SyncOnceCell<isize> = SyncOnceCell::new();
pub static VERBOSE: OnceLock<isize> = OnceLock::new();


//A macro which takes the enum and adds to it a try_from trait which can convert values back to
Expand Down
2 changes: 1 addition & 1 deletion src/interface/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use std::slice;
pub use std::path::{PathBuf as RustPathBuf, Path as RustPath, Component as RustPathComponent};
pub use std::ffi::CStr as RustCStr;
use std::io::{SeekFrom, Seek, Read, Write};
pub use std::lazy::{SyncLazy as RustLazyGlobal};
pub use std::sync::{LazyLock as RustLazyGlobal};

use std::os::unix::io::{AsRawFd, RawFd};
use libc::{mmap, mremap, munmap, PROT_READ, PROT_WRITE, MAP_SHARED, MREMAP_MAYMOVE};
Expand Down