Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/lib/libspl/
H A Dthread.c58 struct zk_thread_wrapper ztw; in zk_thread_wrapper() local
59 memcpy(&ztw, arg, sizeof (ztw)); in zk_thread_wrapper()
61 ztw.func(ztw.arg); in zk_thread_wrapper()
72 struct zk_thread_wrapper *ztw; in zk_thread_create() local
109 VERIFY(ztw = malloc(sizeof (*ztw))); in zk_thread_create()
110 ztw->func = func; in zk_thread_create()
111 ztw->arg = arg; in zk_thread_create()
112 VERIFY0(pthread_create(&tid, &attr, zk_thread_wrapper, ztw)); in zk_thread_create()