HomeSort by relevance Sort by last modified time
    Searched defs:errkey (Results 1 - 3 of 3) sorted by null

  /onnv/onnv-gate/usr/src/cmd/sgs/libelf/common/
error.c 47 static thread_key_t errkey = THR_ONCE_KEY; variable
69 (void) thr_keycreate_once(&errkey, 0);
70 (void) thr_setspecific(errkey, (void *)encerr);
79 return ((uintptr_t)pthread_getspecific(errkey));
  /onnv/onnv-gate/usr/src/lib/libexacct/common/
exacct_ops.c 49 static thread_key_t errkey = THR_ONCE_KEY; variable
300 (void) thr_keycreate_once(&errkey, 0);
301 (void) thr_setspecific(errkey, (void *)(intptr_t)errval);
309 if (errkey == THR_ONCE_KEY)
311 return ((int)(uintptr_t)pthread_getspecific(errkey));
    [all...]
  /onnv/onnv-gate/usr/src/lib/libpool/common/
pool.c 116 static thread_key_t errkey = THR_ONCE_KEY; variable
613 (void) thr_keycreate_once(&errkey, 0);
614 (void) thr_setspecific(errkey, (void *)(intptr_t)errval);
626 if (errkey == THR_ONCE_KEY)
628 return ((uintptr_t)pthread_getspecific(errkey));
    [all...]

Completed in 60 milliseconds