1 2 3 4 5 6 7 8 9 10 11 12
//! Header: `pthread/stack_np.h` //! //! <https://github.com/apple-oss-distributions/libpthread/blob/main/include/pthread/stack_np.h> use crate::prelude::*; extern "C" { pub fn pthread_stack_frame_decode_np( frame_addr: uintptr_t, return_addr: *mut uintptr_t, ) -> uintptr_t; }