File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2202,6 +2202,7 @@ pthread_attr_setschedpolicy
2202
2202
pthread_attr_setscope
2203
2203
pthread_attr_setstackaddr
2204
2204
pthread_cancel
2205
+ pthread_cond_timedwait_relative_np
2205
2206
pthread_condattr_getpshared
2206
2207
pthread_condattr_setpshared
2207
2208
pthread_cpu_number_np
Original file line number Diff line number Diff line change @@ -5380,6 +5380,11 @@ extern "C" {
5380
5380
pub fn mach_host_self ( ) -> mach_port_t ;
5381
5381
#[ deprecated( since = "0.2.55" , note = "Use the `mach2` crate instead" ) ]
5382
5382
pub fn mach_thread_self ( ) -> mach_port_t ;
5383
+ pub fn pthread_cond_timedwait_relative_np (
5384
+ cond : * mut pthread_cond_t ,
5385
+ lock : * mut pthread_mutex_t ,
5386
+ timeout : * const crate :: timespec ,
5387
+ ) -> c_int ;
5383
5388
pub fn pthread_once (
5384
5389
once_control : * mut crate :: pthread_once_t ,
5385
5390
init_routine : Option < unsafe extern "C" fn ( ) > ,
You can’t perform that action at this time.
0 commit comments