diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2024-02-09 19:11:37 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2024-02-09 19:13:07 +0300 |
| commit | 83f3bc42714250633cacadcde8b15da28bf443f0 (patch) | |
| tree | 6e518b2c118271f6a3f9dc409b687da92d441b95 /compiler/rustc_data_structures/src/jobserver.rs | |
| parent | 8fb67fb37fed736cb04f307473af7c863be224fb (diff) | |
| download | rust-83f3bc42714250633cacadcde8b15da28bf443f0.tar.gz rust-83f3bc42714250633cacadcde8b15da28bf443f0.zip | |
Update jobserver-rs to 0.1.28
Diffstat (limited to 'compiler/rustc_data_structures/src/jobserver.rs')
| -rw-r--r-- | compiler/rustc_data_structures/src/jobserver.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/jobserver.rs b/compiler/rustc_data_structures/src/jobserver.rs index 412e33aaa65..89088bc5c1b 100644 --- a/compiler/rustc_data_structures/src/jobserver.rs +++ b/compiler/rustc_data_structures/src/jobserver.rs @@ -23,7 +23,10 @@ static GLOBAL_CLIENT: LazyLock<Result<Client, String>> = LazyLock::new(|| { if matches!( error.kind(), - FromEnvErrorKind::NoEnvVar | FromEnvErrorKind::NoJobserver | FromEnvErrorKind::Unsupported + FromEnvErrorKind::NoEnvVar + | FromEnvErrorKind::NoJobserver + | FromEnvErrorKind::NegativeFd + | FromEnvErrorKind::Unsupported ) { return Ok(default_client()); } |
