Skip to content

Commit eb349e3

Browse files
committed
Use conditional synchronization for Lock
1 parent af6a6a3 commit eb349e3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/parse/session.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
use std::path::Path;
22
use std::sync::atomic::{AtomicBool, Ordering};
33

4-
use rustc_data_structures::sync::{Lrc, Send};
5-
use rustc_errors::emitter::{Emitter, EmitterWriter};
4+
use rustc_data_structures::sync::{IntoDynSyncSend, Lrc};
5+
use rustc_errors::emitter::{DynEmitter, Emitter, EmitterWriter};
66
use rustc_errors::translation::Translate;
77
use rustc_errors::{ColorConfig, Diagnostic, Handler, Level as DiagnosticLevel};
88
use rustc_session::parse::ParseSess as RawParseSess;
@@ -48,15 +48,15 @@ impl Emitter for SilentEmitter {
4848
fn emit_diagnostic(&mut self, _db: &Diagnostic) {}
4949
}
5050

51-
fn silent_emitter() -> Box<dyn Emitter + Send> {
51+
fn silent_emitter() -> Box<DynEmitter> {
5252
Box::new(SilentEmitter {})
5353
}
5454

5555
/// Emit errors against every files expect ones specified in the `ignore_path_set`.
5656
struct SilentOnIgnoredFilesEmitter {
57-
ignore_path_set: Lrc<IgnorePathSet>,
57+
ignore_path_set: IntoDynSyncSend<Lrc<IgnorePathSet>>,
5858
source_map: Lrc<SourceMap>,
59-
emitter: Box<dyn Emitter + Send>,
59+
emitter: Box<DynEmitter>,
6060
has_non_ignorable_parser_errors: bool,
6161
can_reset: Lrc<AtomicBool>,
6262
}
@@ -145,7 +145,7 @@ fn default_handler(
145145
has_non_ignorable_parser_errors: false,
146146
source_map,
147147
emitter,
148-
ignore_path_set,
148+
ignore_path_set: IntoDynSyncSend(ignore_path_set),
149149
can_reset,
150150
}))
151151
}
@@ -396,7 +396,7 @@ mod tests {
396396
has_non_ignorable_parser_errors: false,
397397
source_map,
398398
emitter: Box::new(emitter_writer),
399-
ignore_path_set,
399+
ignore_path_set: IntoDynSyncSend(ignore_path_set),
400400
can_reset,
401401
}
402402
}

0 commit comments

Comments
 (0)