libc 0.2.185

Raw FFI bindings to platform libraries like libc.
Documentation
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;
}