/// FIXME: docs

This commit is contained in:
Christian Poveda 2022-09-26 11:40:23 -05:00
parent 14fc9b29a3
commit c983ced79c
No known key found for this signature in database
GPG key ID: 27525EF5E7420A50
2 changed files with 2 additions and 2 deletions

View file

@ -132,7 +132,7 @@ pub struct MiriConfig {
pub external_so_file: Option<PathBuf>,
/// Run a garbage collector for SbTags every N basic blocks.
pub gc_interval: u32,
/// FIXME: add docs.
/// The number of CPUs to be reported by miri.
pub num_cpus: u32,
}

View file

@ -406,7 +406,7 @@ pub struct MiriMachine<'mir, 'tcx> {
pub(crate) gc_interval: u32,
/// The number of blocks that passed since the last SbTag GC pass.
pub(crate) since_gc: u32,
/// FIXME: docs,
/// The number of CPUs to be reported by miri.
pub(crate) num_cpus: u32,
}