Home
last modified time | relevance | path

Searched refs:once_callback (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/base/
H A Dheimbase.c383 struct once_callback { struct
391 struct once_callback *once_callback = pthread_getspecific(once_arg_key); in once_callback_caller() argument
393 if (once_callback == NULL) { in once_callback_caller()
398 once_callback->fn(once_callback->data); in once_callback_caller()
448 struct once_callback once_callback; in heim_base_once_f()
450 once_callback.fn = func; in heim_base_once_f()
451 once_callback.data = ctx; in heim_base_once_f()
459 errno = pthread_setspecific(once_arg_key, &once_callback); in heim_base_once_f()