1 use crate::prelude::*; 2 3 pub struct UnwindRegistration {} 4 5 impl UnwindRegistration { 6 pub const SECTION_NAME: &'static str = ".eh_frame"; 7 new( _base_address: *const u8, _unwind_info: *const u8, _unwind_len: usize, ) -> Result<UnwindRegistration>8 pub unsafe fn new( 9 _base_address: *const u8, 10 _unwind_info: *const u8, 11 _unwind_len: usize, 12 ) -> Result<UnwindRegistration> { 13 Ok(UnwindRegistration {}) 14 } 15 } 16