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 1183d54 commit 8aeffedCopy full SHA for 8aeffed
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
@@ -1056,6 +1056,7 @@ extern "C" {
1056
pub fn times(buf: *mut ::tms) -> ::clock_t;
1057
1058
pub fn pthread_self() -> ::pthread_t;
1059
+ pub fn pthread_equal(t1: ::pthread_t, t2: ::pthread_t) -> ::c_int;
1060
#[cfg_attr(
1061
all(target_os = "macos", target_arch = "x86"),
1062
link_name = "pthread_join$UNIX2003"
0 commit comments