Update rustfmt to the 2024 style edition (#35764)

* Use 2024 style edition

Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>

* Reformat all code

Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>

---------

Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
This commit is contained in:
Simon Wülker 2025-03-03 12:26:53 +01:00 committed by GitHub
parent 6300e820b4
commit 3d320fa96a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
603 changed files with 1739 additions and 1648 deletions

View file

@ -49,16 +49,18 @@ impl Profiler {
let chan = chan.clone();
thread::Builder::new()
.name("MemoryProfTimer".to_owned())
.spawn(move || loop {
thread::sleep(Duration::from_secs_f64(period));
let (mutex, cvar) = &*notifier;
let mut done = mutex.lock();
*done = false;
if chan.send(ProfilerMsg::Print).is_err() {
break;
}
if !*done {
cvar.wait(&mut done);
.spawn(move || {
loop {
thread::sleep(Duration::from_secs_f64(period));
let (mutex, cvar) = &*notifier;
let mut done = mutex.lock();
*done = false;
if chan.send(ProfilerMsg::Print).is_err() {
break;
}
if !*done {
cvar.wait(&mut done);
}
}
})
.expect("Thread spawning failed");
@ -623,8 +625,8 @@ mod system_reporter {
#[cfg(target_os = "linux")]
fn resident_segments() -> Vec<(String, usize)> {
use std::collections::hash_map::Entry;
use std::collections::HashMap;
use std::collections::hash_map::Entry;
use std::fs::File;
use std::io::{BufRead, BufReader};