本文整理汇总了C++中pthread_key_create函数的典型用法代码示例。如果您正苦于以下问题:C++ pthread_key_create函数的具体用法?C++ pthread_key_create怎么用?C++ pthread_key_create使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了pthread_key_create函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: create_key_once
static void create_key_once(void)
{
pthread_key_create(&g_key, NULL);
}
开发者ID:hhtrace,项目名称:SL,代码行数:4,代码来源:sl_server_event.c
示例2: Deleter
Deleter()
{
pthread_key_create(&pkey_, &ThreadLocalSingleton::destructor);
}
开发者ID:liuheng,项目名称:tesla,代码行数:4,代码来源:ThreadLocalSingleton.hpp
示例3: make_key
static void
make_key()
{
(void) pthread_key_create(&tlsKey, NULL);
}
开发者ID:capriza,项目名称:jxcore-android-sample,代码行数:5,代码来源:jxcore.cpp
示例4: icalerrno_key_alloc
static void icalerrno_key_alloc(void) {
pthread_key_create(&icalerrno_key, icalerrno_destroy);
}
开发者ID:cgwalters,项目名称:libical-tarballs-as-git,代码行数:3,代码来源:icalerror.c
示例5: l_random_setup
void
l_random_setup(void)
{
pthread_key_create(&key, l_random_key_destructor);
}
开发者ID:baron314159,项目名称:lildb,代码行数:5,代码来源:random.c
示例6: ecpg_actual_connection_init
static void
ecpg_actual_connection_init(void)
{
pthread_key_create(&actual_connection_key, NULL);
}
开发者ID:rafasordi,项目名称:postgres,代码行数:5,代码来源:connect.c
示例7: emutls_init
static __inline void emutls_init(void) {
if (pthread_key_create(&emutls_pthread_key, emutls_key_destructor) != 0)
abort();
emutls_key_created = true;
}
开发者ID:llvm-project,项目名称:compiler-rt,代码行数:5,代码来源:emutls.c
示例8: ThreadLocal
ThreadLocal(bool destroy = true)
{
pthread_key_create(&m_key,
destroy ? &ThreadLocal::Destroy : &ThreadLocal::Empty);
}
开发者ID:shitfSign,项目名称:mmkv,代码行数:5,代码来源:thread_local.hpp
示例9: thread_init
static void thread_init(void)
{
pthread_key_create(&__ph_thread_key, destroy_thread);
ck_epoch_init(&misc_epoch);
}
开发者ID:atrmat,项目名称:libphenom,代码行数:5,代码来源:thread.c
示例10: taskLibInit
/*
* TaskLib init function
*/
STATUS
taskLibInit(void)
{
OS_TCB *tcb;
struct sched_param param;
int policy;
char name[12];
/* Determine the min and max allowable priorities */
#ifdef PTHREAD_MIN_PRIORITY
rr_min_priority = PTHREAD_MIN_PRIORITY;
#else
rr_min_priority = sched_get_priority_min (SCHED_RR);
#endif
#ifdef PTHREAD_MAX_PRIORITY
rr_max_priority = PTHREAD_MAX_PRIORITY;
#else
rr_max_priority = sched_get_priority_max (SCHED_RR);
#endif
/* Create a thread specific key to access TCB */
pthread_key_create(&taskControlBlock, NULL);
/* allocate a TCB for main thread */
tcb = (OS_TCB *)malloc(sizeof(OS_TCB));
if (tcb == NULL) {
return ERROR;
}
snprintf(name, sizeof(name), "tUnix%d", (int)getpid());
tcb->name = strdup(name);
#ifdef HAVE_PTHREAD_ATTR_SETSCHEDPOLICY
pthread_getschedparam(pthread_self(), &policy, ¶m);
#else
policy = 0;
param.sched_priority = rr_min_priority;
#endif
tcb->policy = policy;
tcb->priority = priorityPosixToVx(param.sched_priority);
tcb->options = 0;
tcb->entry = NULL; /* implicit main() */
tcb->errorStatus = errno;
/* Process and thread ids */
tcb->pid = getpid();
tcb->tid = pthread_self();
/* The tcb list is initially empty */
tcb->next = NULL;
/* Mark the TCB */
tcb->magic = TASK_MAGIC;
/* Register the TCB pointer in the thread-specific key */
#ifdef DEBUG
fprintf(stderr, "registering task specific value %lu %lu\n",
(unsigned long)tcb, (unsigned long)pthread_self());
#endif
if (pthread_setspecific(taskControlBlock, (void *)tcb) != 0) {
errnoSet(errno);
return ERROR;
}
/* Initialize the global task List */
taskList = tcb;
return OK;
}
开发者ID:openrobots,项目名称:pocolibs,代码行数:67,代码来源:taskLib.c
示例11: initThreadLocal
void initThreadLocal(JNIEnv* env) {
pthread_key_create(&gTlsKey, destroyThreadLocal);
}
开发者ID:MarcioAlbuquerque,项目名称:nativelibs4java,代码行数:3,代码来源:ThreadLocal.c
示例12: x_init
void x_init()
{
pthread_key_create(&g_except_key, NULL);
pthread_key_create(&g_error_key, NULL);
}
开发者ID:kidaa,项目名称:Synthesis,代码行数:5,代码来源:memory.c
示例13: _xc_init_errbuf
static void
_xc_init_errbuf(void)
{
pthread_key_create(&errbuf_pkey, _xc_clean_errbuf);
}
开发者ID:tklengyel,项目名称:xen,代码行数:5,代码来源:xc_private.c
示例14: tsd_create
// NOTE: glibc used uint as pthread_key_t.
void
tsd_create(uint_t * key, void (*exit)(void *))
{
VERIFY0(pthread_key_create(key, exit));
}
开发者ID:jpeach,项目名称:zfsd,代码行数:6,代码来源:thread.c
示例15: np_init_error_key
static void
np_init_error_key()
{
pthread_key_create(&error_key, np_destroy_error);
}
开发者ID:BillTheBest,项目名称:Open-Vertex,代码行数:5,代码来源:error.c
示例16: ldap_pvt_thread_key_create
int
ldap_pvt_thread_key_create( ldap_pvt_thread_key_t *key )
{
return pthread_key_create( key, NULL );
}
开发者ID:millken,项目名称:zhuxianB30,代码行数:5,代码来源:thr_posix.c
示例17: init_errno
static void init_errno(void)
{
pthread_key_create(&errno_key, free);
}
开发者ID:LuaDist,项目名称:libgit2,代码行数:4,代码来源:errors.c
示例18: fr_strerror_make_key
/* Create Key */
static void fr_strerror_make_key(void)
{
pthread_key_create(&fr_strerror_key, NULL);
}
开发者ID:FabioPedretti,项目名称:freeradius-server,代码行数:5,代码来源:log.c
示例19: g_uselocale_key_init
static void g_uselocale_key_init() {
pthread_key_create(&g_uselocale_key, NULL);
}
开发者ID:multi-os-engine,项目名称:platform_bionic,代码行数:3,代码来源:locale.cpp
示例20: thread_init
static void
thread_init(void)
{
pthread_key_create(&key, free);
}
开发者ID:AnarNFT,项目名称:books-code,代码行数:5,代码来源:getenv3.c
注:本文中的pthread_key_create函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论