Use Linux file locking on Redox
This commit is contained in:
parent
efa213afad
commit
3cddc04230
1 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,10 @@ cfg_match! {
|
||||||
mod linux;
|
mod linux;
|
||||||
use linux as imp;
|
use linux as imp;
|
||||||
}
|
}
|
||||||
|
cfg(target_os = "redox") => {
|
||||||
|
mod linux;
|
||||||
|
use linux as imp;
|
||||||
|
}
|
||||||
cfg(unix) => {
|
cfg(unix) => {
|
||||||
mod unix;
|
mod unix;
|
||||||
use unix as imp;
|
use unix as imp;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue