线程私有数据是存储和查询与某个线程相关的一种机制。一个明显的实例就是errno, 一个线程做了设置errno的操作并不会影响进程中其它线程的errno值。
API |
|
pthread_key_create | man pthread_key_create |
pthread_key_delete |
|
pthread_once |
|
pthread_getspecific |
|
pthread_setspecific |
|
线程私有数据是存储和查询与某个线程相关的一种机制。一个明显的实例就是errno, 一个线程做了设置errno的操作并不会影响进程中其它线程的errno值。
API |
|
pthread_key_create | man pthread_key_create |
pthread_key_delete |
|
pthread_once |
|
pthread_getspecific |
|
pthread_setspecific |
|