Lines Matching refs:pack
65 struct impl_thrd_param pack = *((struct impl_thrd_param *)p);
67 return (void*)(intptr_t)pack.func(pack.arg);
257 struct impl_thrd_param *pack;
259 pack = (struct impl_thrd_param *)malloc(sizeof(struct impl_thrd_param));
260 if (!pack) return thrd_nomem;
261 pack->func = func;
262 pack->arg = arg;
263 if (pthread_create(thr, NULL, impl_thrd_routine, pack) != 0) {
264 free(pack);