We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 497ac42 commit a226203Copy full SHA for a226203
src/teeos/mod.rs
@@ -1106,6 +1106,12 @@ extern "C" {
1106
1107
pub fn pthread_cond_wait(cond: *mut pthread_cond_t, lock: *mut pthread_mutex_t) -> c_int;
1108
1109
+ pub fn pthread_cond_timedwait(
1110
+ cond: *mut pthread_cond_t,
1111
+ lock: *mut pthread_mutex_t,
1112
+ abstime: *const ::timespec,
1113
+ ) -> ::c_int;
1114
+
1115
pub fn pthread_mutexattr_setrobust(attr: *mut pthread_mutexattr_t, robustness: c_int) -> c_int;
1116
1117
pub fn pthread_create(
0 commit comments