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 07af177 commit b59c8c6Copy full SHA for b59c8c6
src/unix/linux_like/linux/gnu/mod.rs
@@ -1116,6 +1116,10 @@ extern "C" {
1116
) -> c_int;
1117
pub fn pthread_sigqueue(thread: crate::pthread_t, sig: c_int, value: crate::sigval) -> c_int;
1118
pub fn pthread_tryjoin_np(thread: crate::pthread_t, retval: *mut *mut c_void) -> c_int;
1119
+ #[cfg_attr(
1120
+ all(target_env = "gnu", target_pointer_width = "32", gnu_time_bits64),
1121
+ link_name = "__pthread_timedjoin_np64"
1122
+ )]
1123
pub fn pthread_timedjoin_np(
1124
thread: crate::pthread_t,
1125
retval: *mut *mut c_void,
0 commit comments