From fc2512cfb727d49529d8ed99164db871f4829b73 Mon Sep 17 00:00:00 2001 From: Robert Mustacchi Date: Mon, 28 Mar 2016 19:43:25 -0700 Subject: 6951 Initial c11 support 6952 gets should not be visible in C11 6953 add support for c11 threads api 6954 Symbols test should support validating pre-processor symbols Reviewed by: Josef 'Jeff' Sipek Reviewed by: Dan McDonald Reviewed by: Garrett D'Amore Approved by: Garrett D'Amore --- usr/src/man/man3c/thrd_equal.3c | 56 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 usr/src/man/man3c/thrd_equal.3c (limited to 'usr/src/man/man3c/thrd_equal.3c') diff --git a/usr/src/man/man3c/thrd_equal.3c b/usr/src/man/man3c/thrd_equal.3c new file mode 100644 index 0000000000..6c77a72138 --- /dev/null +++ b/usr/src/man/man3c/thrd_equal.3c @@ -0,0 +1,56 @@ +.\" +.\" This file and its contents are supplied under the terms of the +.\" Common Development and Distribution License ("CDDL"), version 1.0. +.\" You may only use this file in accordance with the terms of version +.\" 1.0 of the CDDL. +.\" +.\" A full copy of the text of the CDDL should have accompanied this +.\" source. A copy of the CDDL is also available via the Internet at +.\" http://www.illumos.org/license/CDDL. +.\" +.\" +.\" Copyright 2016 Joyent, Inc. +.\" +.Dd "Jan 11, 2015" +.Dt THRD_EQUAL 3C +.Os +.Sh NAME +.Nm thrd_equal +.Nd determine if threads are equal +.Sh SYNOPSIS +.In threads.h +.Ft int +.Fo thrd_equal +.Fa "thrd_t thrd0" +.Fa "thrd_t thrd1" +.Fc +.Sh DESCRIPTION +The +.Fn thrd_equal +function compares +.Fa thrd0 +and +.Fa thrd1 +and determines whether or not they refer to the same thread. +.Sh RETURN VALUES +The +.Fn thrd_equal +function returns +.Sy 0 +if +.Fa thrd0 +and +.Fa thrd1 +refer to the same thread. Otherwise, a non-zero value is returned, +indicating that +.Fa thrd0 +and +.Fa thrd1 +are different threads. +.Sh INTERFACE STABILITY +.Sy Standard +.Sh MT-LEVEL +.Sy MT-Safe +.Sh SEE ALSO +.Xr attributes 5 , +.Xr threads 5 -- cgit v1.2.3