mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-06-22 18:46:37 +00:00
Fix use of fs4::fs_std::FileExt::try_lock*
Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
This commit is contained in:
parent
0f32274a6c
commit
c836f0026a
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ impl FileLock {
|
|||
/// Note that this operation is blocking, and should not be called in async contexts.
|
||||
pub fn new_try_exclusive(file: File) -> Result<Self, (File, Option<io::Error>)> {
|
||||
match FileExt::try_lock_exclusive(&file) {
|
||||
Ok(()) => Ok(Self::new(file)),
|
||||
Ok(_) => Ok(Self::new(file)),
|
||||
Err(e) if e.raw_os_error() == fs4::lock_contended_error().raw_os_error() => {
|
||||
Err((file, None))
|
||||
}
|
||||
|
@ -70,7 +70,7 @@ impl FileLock {
|
|||
/// Note that this operation is blocking, and should not be called in async contexts.
|
||||
pub fn new_try_shared(file: File) -> Result<Self, (File, Option<io::Error>)> {
|
||||
match FileExt::try_lock_shared(&file) {
|
||||
Ok(()) => Ok(Self::new(file)),
|
||||
Ok(_) => Ok(Self::new(file)),
|
||||
Err(e) if e.raw_os_error() == fs4::lock_contended_error().raw_os_error() => {
|
||||
Err((file, None))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue