File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -240,6 +240,7 @@ fn test_apple(target: &str) {
240
240
"pthread.h" ,
241
241
"pthread_spis.h" ,
242
242
"pthread/introspection.h" ,
243
+ "pthread/stack_np.h" ,
243
244
"pwd.h" ,
244
245
"regex.h" ,
245
246
"resolv.h" ,
Original file line number Diff line number Diff line change @@ -2095,12 +2095,13 @@ pthread_get_stackaddr_np
2095
2095
pthread_get_stacksize_np
2096
2096
pthread_getname_np
2097
2097
pthread_kill
2098
+ pthread_main_np
2098
2099
pthread_mutexattr_getpshared
2099
2100
pthread_mutexattr_setpshared
2100
2101
pthread_rwlockattr_getpshared
2101
2102
pthread_rwlockattr_setpshared
2102
2103
pthread_setname_np
2103
- pthread_main_np
2104
+ pthread_stack_frame_decode_np
2104
2105
ptrace
2105
2106
pututxline
2106
2107
pwritev
Original file line number Diff line number Diff line change @@ -5190,6 +5190,10 @@ extern "C" {
5190
5190
f : extern "C" fn ( * mut :: c_void ) -> * mut :: c_void ,
5191
5191
value : * mut :: c_void ,
5192
5192
) -> :: c_int ;
5193
+ pub fn pthread_stack_frame_decode_np (
5194
+ frame_addr : :: uintptr_t ,
5195
+ return_addr : * mut :: uintptr_t ,
5196
+ ) -> :: uintptr_t ;
5193
5197
pub fn pthread_get_stackaddr_np ( thread : :: pthread_t ) -> * mut :: c_void ;
5194
5198
pub fn pthread_get_stacksize_np ( thread : :: pthread_t ) -> :: size_t ;
5195
5199
pub fn pthread_condattr_setpshared ( attr : * mut pthread_condattr_t , pshared : :: c_int ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments