Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/lib/libzpool/
H A Dkernel.c87 struct zk_thread_wrapper ztw; in zk_thread_wrapper() local
88 memcpy(&ztw, arg, sizeof (ztw)); in zk_thread_wrapper()
90 ztw.func(ztw.arg); in zk_thread_wrapper()
101 struct zk_thread_wrapper *ztw; in zk_thread_create() local
138 VERIFY(ztw = malloc(sizeof (*ztw))); in zk_thread_create()
139 ztw->func = func; in zk_thread_create()
140 ztw->arg = arg; in zk_thread_create()
141 VERIFY0(pthread_create(&tid, &attr, zk_thread_wrapper, ztw)); in zk_thread_create()