servo/ports/servoshell/platform/macos/mod.rs
Josh Matthews 6ab1b5e9dd
servoshell: Hide information about outstanding threads by default. (#39044)
This output doesn't matter to most developers and testers, and it breaks
`./mach test-speedometer`. Let's hide it by default and add a flag to
opt in.

Testing: No testing for debug output.

Signed-off-by: Josh Matthews <josh@joshmatthews.net>
2025-08-30 20:40:29 +00:00

45 lines
1.4 KiB
Rust

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use std::time::Duration;
use std::{ptr, thread};
pub fn deinit(clean_shutdown: bool) {
// An unfortunate hack to make sure the linker's dead code stripping doesn't strip our
// `Info.plist`.
unsafe {
ptr::read_volatile(&INFO_PLIST[0]);
}
let thread_count = unsafe { macos_count_running_threads() };
if thread_count != 1 {
log::debug!(
"{} threads are still running after shutdown (bad).",
thread_count
);
if clean_shutdown {
log::debug!("Waiting until all threads have shutdown");
loop {
let thread_count = unsafe { macos_count_running_threads() };
if thread_count == 1 {
break;
}
thread::sleep(Duration::from_millis(1000));
log::debug!("{} threads are still running.", thread_count);
}
}
} else {
log::debug!("All threads have shutdown (good).");
}
}
#[unsafe(link_section = "__TEXT,__info_plist")]
#[unsafe(no_mangle)]
pub static INFO_PLIST: [u8; 619] = *include_bytes!("Info.plist");
#[link(name = "count_threads")]
unsafe extern "C" {
fn macos_count_running_threads() -> i32;
}