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.
pthread_equal
1 parent 0f4fa73 commit 83b3393Copy full SHA for 83b3393
libc-test/semver/unix.txt
@@ -687,6 +687,7 @@ pthread_condattr_init
687
pthread_condattr_t
688
pthread_create
689
pthread_detach
690
+pthread_equal
691
pthread_exit
692
pthread_getspecific
693
pthread_join
src/unix/mod.rs
@@ -1030,6 +1030,7 @@ extern "C" {
1030
pub fn times(buf: *mut ::tms) -> ::clock_t;
1031
1032
pub fn pthread_self() -> ::pthread_t;
1033
+ pub fn pthread_equal(t1: ::pthread_t, t2: ::pthread_t) -> ::c_int;
1034
#[cfg_attr(
1035
all(target_os = "macos", target_arch = "x86"),
1036
link_name = "pthread_join$UNIX2003"
0 commit comments