Skip Navigation Links | |
Exit Print View | |
man pages section 3: Basic Library Functions Oracle Solaris 11.1 Information Library |
enable_extended_FILE_stdio(3C)
posix_spawnattr_getschedparam(3C)
posix_spawnattr_getschedpolicy(3C)
posix_spawnattr_getsigdefault(3C)
posix_spawnattr_getsigignore_np(3C)
posix_spawnattr_getsigmask(3C)
posix_spawnattr_setschedparam(3C)
posix_spawnattr_setschedpolicy(3C)
posix_spawnattr_setsigdefault(3C)
posix_spawnattr_setsigignore_np(3C)
posix_spawnattr_setsigmask(3C)
posix_spawn_file_actions_addclose(3C)
posix_spawn_file_actions_addclosefrom_np(3C)
posix_spawn_file_actions_adddup2(3C)
posix_spawn_file_actions_addopen(3C)
posix_spawn_file_actions_destroy(3C)
posix_spawn_file_actions_init(3C)
pthread_attr_getdetachstate(3C)
pthread_attr_getinheritsched(3C)
pthread_attr_getschedparam(3C)
pthread_attr_getschedpolicy(3C)
pthread_attr_setdetachstate(3C)
pthread_attr_setinheritsched(3C)
pthread_attr_setschedparam(3C)
pthread_attr_setschedpolicy(3C)
pthread_barrierattr_destroy(3C)
pthread_barrierattr_getpshared(3C)
pthread_barrierattr_setpshared(3C)
pthread_condattr_getpshared(3C)
pthread_condattr_setpshared(3C)
pthread_cond_reltimedwait_np(3C)
pthread_mutexattr_getprioceiling(3C)
pthread_mutexattr_getprotocol(3C)
pthread_mutexattr_getpshared(3C)
pthread_mutexattr_getrobust(3C)
pthread_mutexattr_setprioceiling(3C)
pthread_mutexattr_setprotocol(3C)
pthread_mutexattr_setpshared(3C)
pthread_mutexattr_setrobust(3C)
pthread_mutex_getprioceiling(3C)
pthread_mutex_reltimedlock_np(3C)
pthread_mutex_setprioceiling(3C)
pthread_rwlockattr_destroy(3C)
pthread_rwlockattr_getpshared(3C)
pthread_rwlockattr_setpshared(3C)
pthread_rwlock_reltimedrdlock_np(3C)
pthread_rwlock_reltimedwrlock_np(3C)
pthread_rwlock_timedrdlock(3C)
pthread_rwlock_timedwrlock(3C)
rctlblk_get_enforced_value(3C)
- create thread-specific data key
cc –mt [ flag... ] file... [ library... ] #include <pthread.h> int pthread_key_create(pthread_key_t *key, void (*destructor)(void*));
int pthread_key_create_once_np(pthread_key_t *key, void (*destructor)(void*));
The pthread_key_create() function creates a thread-specific data key visible 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 that key, the value of the key is set to NULL and then the function pointed to is called with the previously associated value as its sole argument. Destructors can be called in any order.
If, after all the destructors have been called for all keys with non-null values, there are still some keys with non-null values, the process will be repeated. POSIX requires that this process be executed at least PTHREAD_DESTRUCTOR_ITERATIONS times. Solaris calls the destructors repeatedly until all values with associated destructors are NULL. Destructors that set new values can cause an infinite loop.
An exiting thread runs with all signals blocked. All thread termination functions, including thread-specific data destructor functions, are called with all signals blocked.
The pthread_key_create_once_np() function is identical to the pthread_key_create() function except that the key referred to by *key must be statically initialized with the value PTHREAD_ONCE_KEY_NP before calling pthread_key_create_once_np(), and the key is created exactly once. This function call is equivalent to using pthread_once(3C) to call a onetime initialization function that calls pthread_key_create() to create the data key.
If successful, the pthread_key_create() and pthread_key_create_once_np() functions store the newly created key value at *key and return 0. Otherwise, an error number is returned to indicate the error.
The pthread_key_create() and pthread_key_create_once_np() functions will fail if:
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 has been exceeded.
Insufficient memory exists to create the key.
The pthread_key_create() and pthread_key_create_once_np() functions will not return an error value of EINTR.
Example 1 Call thread-specific data in the function from more than one thread without special initialization.
In the following example, the thread-specific data in the function can be called from more than one thread without special initialization. For each argument passed to the executable, a thread is created and privately bound to the string-value of that argument.
/* cc -mt thisfile.c */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <pthread.h> static void *thread_function(void *); static void show_tsd(void); static void cleanup(void*); #define MAX_THREADS 20 static pthread_key_t tsd_key = PTHREAD_ONCE_KEY_NP; int main(int argc, char *argv[]) { pthread_t tid[MAX_THREADS]; int num_threads; int i; if ((num_threads = argc - 1) > MAX_THREADS) num_threads = MAX_THREADS; for (i = 0; i < num_threads; i++) pthread_create(&tid[i], NULL, thread_function, argv[i+1]); for (i = 0; i < num_threads; i++) pthread_join(tid[i], NULL); return (0); } static void * thread_function(void *arg) { char *data; pthread_key_create_once_np(&tsd_key, cleanup); data = malloc(strlen(arg) + 1); strcpy(data, arg); pthread_setspecific(tsd_key, data); show_tsd(); return (NULL); } static void show_tsd() { void *tsd = pthread_getspecific(tsd_key); printf("tsd for %d = %s\n", pthread_self(), (char *)tsd); } /* application-specific clean-up function */ static void cleanup(void *tsd) { printf("freeing tsd for %d = %s\n", pthread_self(), (char *)tsd); free(tsd); }
See attributes(5) for descriptions of the following attributes:
|
For pthread_key_create(), see standards(5).
pthread_once(3C), pthread_getspecific(3C), pthread_setspecific(3C), pthread_key_delete(3C), attributes(5), standards(5)