Lines Matching refs:arg_p
263 args_t *arg_p; in thr_create() local
277 arg_p = (args_t *)malloc(sizeof (args_t)); in thr_create()
278 assert(arg_p); in thr_create()
279 arg_p->real_func = real_func; in thr_create()
280 arg_p->real_arg = real_arg; in thr_create()
282 return ((*real_thr_create)(stk, stksize, probestart, (void *) arg_p, in thr_create()
295 args_t *arg_p; in pthread_create() local
309 arg_p = (args_t *)malloc(sizeof (args_t)); in pthread_create()
310 assert(arg_p); in pthread_create()
311 arg_p->real_func = real_func; in pthread_create()
312 arg_p->real_arg = real_arg; in pthread_create()
315 (void *) arg_p)); in pthread_create()