Lines Matching defs:tinfo
99 pthread_t *tinfo;
103 tinfo = calloc(nr_threads, sizeof(pthread_t));
104 if (tinfo == NULL)
108 if (pthread_create(&tinfo[i], NULL, &alloc_kmem_fn,
110 free(tinfo);
116 ret = pthread_join(tinfo[i], NULL);
121 free(tinfo);
245 pthread_t *tinfo;
250 tinfo = calloc(nr_threads, sizeof(pthread_t));
251 if (tinfo == NULL)
255 if (pthread_create(&tinfo[i], NULL, &pthread_wait_fn,
257 free(tinfo);
266 free(tinfo);