()
| 54 | pub struct LockGuard<'a>(MutexGuard<'a, ()>); |
| 55 | |
| 56 | pub fn lock() -> LockGuard<'static> { |
| 57 | LockGuard(GDB_REGISTRATION.lock().unwrap()) |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | /// For no_std there's no access to synchronization primitives so a primitive |
no test coverage detected