]> git.saurik.com Git - apple/libpthread.git/blobdiff - man/pthread_key_delete.3
libpthread-330.230.1.tar.gz
[apple/libpthread.git] / man / pthread_key_delete.3
index 013ecd4598fbcbdcf099b2f4f2dfead4fe2e51f8..238a517a55597e28a2b95e00e93233639dfc38ce 100644 (file)
@@ -28,7 +28,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.\" $FreeBSD: src/lib/libc_r/man/pthread_key_delete.3,v 1.6.2.4 2001/08/17 15:42:51 ru Exp $
+.\" $FreeBSD$
 .\"
 .Dd April 4, 1996
 .Dt PTHREAD_KEY_DELETE 3
 .Nm pthread_key_delete
 .Nd delete a thread-specific data key
 .Sh SYNOPSIS
-.Fd #include <pthread.h>
+.In pthread.h
 .Ft int
-.Fo pthread_key_delete
-.Fa "pthread_key_t key"
-.Fc
+.Fn pthread_key_delete "pthread_key_t key"
 .Sh DESCRIPTION
 The
 .Fn pthread_key_delete
-function deletes a thread-specific data key, previously returned by
+function deletes a thread-specific data key previously returned by
 .Fn pthread_key_create .
 The thread-specific data values associated with
 .Fa key
@@ -77,11 +75,12 @@ will no longer be called upon thread exit.
 If successful, the
 .Fn pthread_key_delete
 function will return zero.
-Otherwise, an error number will be returned to
+Otherwise an error number will be returned to
 indicate the error.
 .Sh ERRORS
+The
 .Fn pthread_key_delete
-will fail if:
+function will fail if:
 .Bl -tag -width Er
 .It Bq Er EINVAL
 The
@@ -93,6 +92,7 @@ value is invalid.
 .Xr pthread_key_create 3 ,
 .Xr pthread_setspecific 3
 .Sh STANDARDS
+The
 .Fn pthread_key_delete
-conforms to
+function conforms to
 .St -p1003.1-96 .