Home | History | Annotate | Download | only in lib

Lines Matching refs:ac

51   struct curl_actual_call * ac = arg;
52 unsigned int (*func)(void *) = ac->func;
53 void *real_arg = ac->arg;
55 free(ac);
65 struct curl_actual_call *ac = malloc(sizeof(struct curl_actual_call));
66 if(!(ac && t))
69 ac->func = func;
70 ac->arg = arg;
72 if(pthread_create(t, NULL, curl_thread_create_thunk, ac) != 0)
79 free(ac);