Home
Search all pages
Subjects
By activity
Professions, Sciences, Humanities, Business, ...
User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...
Text Strings
Conversions, tests, processing, manipulation,...
Math
Integer, Floating point, Matrix, Statistics, Boolean, ...
Processing
Algorithms, Memory, Process control, Debugging, ...
Stored Data
Data storage, Integrity, Encryption, Compression, ...
Communications
Networks, protocols, Interprocess, Remote, Client Server, ...
Hard World Timing, Calendar and Clock, Audio, Video, Printer, Controls...
File System
Management, Filtering, File & Directory access, Viewers, ...
|
|
|
RocketLink!--> Man page versions:
PTHREAD_KEY_CREATE(3) OpenBSD Programmer's Manual PTHREAD_KEY_CREATE(3)
NAME
pthread_key_create - thread-specific data key creation
SYNOPSIS
#include <pthread.h>
int
pthread_key_create(pthread_key_t *key, void (*destructor)(void *));
DESCRIPTION
The pthread_key_create() function creates a thread-specific data key vis-
ible to all threads in the process. Key values provided by
pthread_key_create() are opaque objects used to locate thread-specific
data. Although the same key value may be used by different threads, the
values bound to the key by pthread_setspecific() are maintained on a per-
thread basis and persist for the life of the calling thread.
Upon key creation, the value NULL is associated with the new key in all
active threads. Upon thread creation, the value NULL is associated with
all defined keys in the new thread.
An optional destructor function may be associated with each key value. At
thread exit, if a key value has a non-NULL destructor pointer, and the
thread has a non-NULL value associated with the key, the function pointed
to is called with the current associated value as its sole argument. The
order of destructor calls is unspecified if more than one destructor ex-
ists for a thread when it exits.
If, after all the destructors have been called for all non-NULL values
with associated destructors, there are still some non-NULL values with
associated destructors, then the process is repeated. If, after at least
[PTHREAD_DESTRUCTOR_ITERATIONS] iterations of destructor calls for out-
standing non-NULL values, there are still some non-NULL values with asso-
ciated destructors, the implementation stops calling destructors.
RETURN VALUES
If successful, the pthread_key_create() function will store the newly
created key value at the location specified by key and returns zero. Oth-
erwise an error number will be returned to indicate the error.
ERRORS
pthread_key_create() will fail if:
[EAGAIN] The system lacked the necessary resources to create another
thread-specific data key, or the system-imposed limit on
the total number of keys per process [PTHREAD_KEYS_MAX]
would be exceeded.
[ENOMEM] Insufficient memory exists to create the key.
SEE ALSO
pthread_getspecific(3), pthread_key_delete(3), pthread_setspecific(3)
STANDARDS
pthread_key_create() conforms to ISO/IEC 9945-1 ANSI/IEEE (``POSIX'') Std
1003.1 Second Edition 1996-07-12.
OpenBSD 2.6 April 4, 1996 1
Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts Institute of Technology, Free Software Foundation, FreeBSD Inc., and others. |
(Corrections, notes, and links courtesy of RocketAware.com)
FreeBSD Sources for pthread_key_create(3) functions
RocketLink!--> Man page versions:
Rapid-Links:
Search | About | Comments | Submit Path: RocketAware > man pages >
pthread_key_create.3/
RocketAware.com is a service of Mib Software Copyright 1999, Forrest J. Cavalier III. All Rights Reserved. We welcome submissions and comments
|