Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/framehop/src/aarch64/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 571 B image not shown  

Quelle  pe.rs   Sprache: unbekannt

 
use super::arch::ArchAarch64;
use crate::pe::{PeSections, PeUnwinderError, PeUnwinding};
use crate::unwind_result::UnwindResult;

impl PeUnwinding for ArchAarch64 {
    fn unwind_frame<F, D>(
        _sections: PeSections<D>,
        _address: u32,
        _regs: &mut Self::UnwindRegs,
        _is_first_frame: bool,
        _read_stack: &mut F,
    ) -> Result<UnwindResult<Self::UnwindRule>, PeUnwinderError>
    where
        F: FnMut(u64) -> Result<u64, ()>,
        D: core::ops::Deref<Target = [u8]>,
    {
        Err(PeUnwinderError::Aarch64Unsupported)
    }
}

[ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet)  ]