diff options
Diffstat (limited to 'lib/libpthread/man/pthread_setspecific.3')
-rw-r--r-- | lib/libpthread/man/pthread_setspecific.3 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libpthread/man/pthread_setspecific.3 b/lib/libpthread/man/pthread_setspecific.3 index 7a4da15ba3a..a25dd0e6411 100644 --- a/lib/libpthread/man/pthread_setspecific.3 +++ b/lib/libpthread/man/pthread_setspecific.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pthread_setspecific.3,v 1.12 2013/06/05 03:44:50 tedu Exp $ +.\" $OpenBSD: pthread_setspecific.3,v 1.13 2017/01/27 15:47:47 schwarze Exp $ .\" .\" Copyright (c) 1996 John Birrell <jb@cimlogic.com.au>. .\" All rights reserved. @@ -32,7 +32,7 @@ .\" .\" $FreeBSD: pthread_setspecific.3,v 1.5 1999/08/28 00:03:11 peter Exp $ .\" -.Dd $Mdocdate: June 5 2013 $ +.Dd $Mdocdate: January 27 2017 $ .Dt PTHREAD_SETSPECIFIC 3 .Os .Sh NAME @@ -49,7 +49,8 @@ function associates a thread-specific value with a .Fa key obtained via a previous call to .Fn pthread_key_create . -Different threads may bind different values to the same key. These values are +Different threads may bind different values to the same key. +These values are typically pointers to blocks of dynamically allocated memory that have been reserved for use by the calling thread. .Pp |