aboutsummaryrefslogtreecommitdiff
path: root/src/panic_wait.rs
blob: 1136e54d83bc883da5ae5429c5abf6f8b93cf9c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
//! # Panic module
//!
//! A panic handler that infinitely waits

use core::panic::PanicInfo;

/// # Panic handler
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
    unimplemented!()
}