Skip to content

Commit

Permalink
Attempt to fix CI (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
s1341 authored Jul 30, 2024
1 parent 0ef8948 commit 2ee2acb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frida-gum/src/cpu_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ impl<'a> CpuContext<'a> {
}

#[cfg(feature = "backtrace")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "backtrace")))]
#[cfg_attr(docsrs, doc(cfg(feature = "backtrace")))]
/// Get an accurate backtrace from this CPU context.
pub fn backtrace_accurate(&self) -> Vec<usize> {
crate::Backtracer::accurate_with_context(unsafe { &*self.cpu_context })
}

#[cfg(feature = "backtrace")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "backtrace")))]
#[cfg_attr(docsrs, doc(cfg(feature = "backtrace")))]
/// Get a fuzzy backtrace from this CPU context.
pub fn backtrace_fuzzy(&self) -> Vec<usize> {
crate::Backtracer::fuzzy_with_context(unsafe { &*self.cpu_context })
Expand Down

0 comments on commit 2ee2acb

Please sign in to comment.