Manual Pages for UNIX Darwin command on man pthread_key_create
MyWebUniversity

Manual Pages for UNIX Darwin command on man pthread_key_create

PTHREADKEYCREATE(3) BSD Library Functions Manual PTHREADKEYCREATE(3)

NAME

pptthhrreeaaddkkeeyyccrreeaattee - thread-specific data key creation

SYNOPSIS

##iinncclluuddee <>

int pptthhrreeaaddkkeeyyccrreeaattee(pthreadkeyt *key, void (*destructor)(void *));

DESCRIPTION

The pptthhrreeaaddkkeeyyccrreeaattee() function creates a thread-specific data key vis-

ible to all threads in the process. Key values provided by

pptthhrreeaaddkkeeyyccrreeaattee() 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 pptthhrreeaaddsseettssppeecciiffiicc() 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 exists 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

[PTHREADDESTRUCTORITERATIONS] 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 pptthhrreeaaddkkeeyyccrreeaattee() function will store the newly created key value at the location specified by key and returns zero. Otherwise an error number will be returned to indicate the error. EERRRROORRSS pptthhrreeaaddkkeeyyccrreeaattee() 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 [PTHREADKEYSMAX] would be exceeded. [ENOMEM] Insufficient memory exists to create the key.

SEE ALSO

pthreadgetspecific(3), pthreadkeydelete(3), pthreadsetspecific(3) STANDARDS

pptthhrreeaaddkkeeyyccrreeaattee() conforms to ISO/IEC 9945-1:1996 (``POSIX.1'').

BSD April 4, 1996 BSD




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™