Skip to content

Commit

Permalink
Use Linux file locking on Redox
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 authored and bjorn3 committed Jun 9, 2024
1 parent f6669e8 commit db45105
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions compiler/rustc_data_structures/src/flock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ cfg_match! {
mod linux;
use linux as imp;
}
cfg(target_os = "redox") => {
mod linux;
use linux as imp;
}
cfg(unix) => {
mod unix;
use unix as imp;
Expand Down

0 comments on commit db45105

Please sign in to comment.