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 @@ -2090,6 +2090,7 @@ pthread_attr_setschedpolicy
2090
2090
pthread_attr_setscope
2091
2091
pthread_attr_setstackaddr
2092
2092
pthread_cancel
2093
+ pthread_cond_timedwait_relative_np
2093
2094
pthread_condattr_getpshared
2094
2095
pthread_condattr_setpshared
2095
2096
pthread_cpu_number_np
Original file line number Diff line number Diff line change @@ -5179,6 +5179,11 @@ extern "C" {
5179
5179
newp : * mut c_void ,
5180
5180
newlen : size_t ,
5181
5181
) -> c_int ;
5182
+ pub fn pthread_cond_timedwait_relative_np (
5183
+ cond : * mut pthread_cond_t ,
5184
+ lock : * mut pthread_mutex_t ,
5185
+ timeout : * const crate :: timespec ,
5186
+ ) -> c_int ;
5182
5187
pub fn pthread_once (
5183
5188
once_control : * mut crate :: pthread_once_t ,
5184
5189
init_routine : Option < unsafe extern "C" fn ( ) > ,
You can’t perform that action at this time.
0 commit comments