chore: Preparation to merge from 156

Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
quexeky
2025-10-13 15:18:44 +11:00
parent 3b09dcfb73
commit 08da52d841
76 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#[macro_export]
macro_rules! lock {
($mutex:expr) => {
$mutex
.lock()
.unwrap_or_else(|_| panic!("Failed to lock onto {}", stringify!($mutex)))
};
}