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 53f78cd commit 77d5adeCopy full SHA for 77d5ade
src/unix/newlib/horizon/mod.rs
@@ -250,6 +250,16 @@ extern "C" {
250
param: *const ::sched_param,
251
) -> ::c_int;
252
253
+ pub fn pthread_condattr_getclock(
254
+ attr: *const ::pthread_condattr_t,
255
+ clock_id: *mut ::clockid_t,
256
+ ) -> ::c_int;
257
+
258
+ pub fn pthread_condattr_setclock(
259
+ attr: *mut ::pthread_condattr_t,
260
+ clock_id: ::clockid_t,
261
262
263
pub fn pthread_getprocessorid_np() -> ::c_int;
264
265
pub fn getrandom(buf: *mut ::c_void, buflen: ::size_t, flags: ::c_uint) -> ::ssize_t;
0 commit comments