Lines Matching defs:func
223 "void func(void *)" to "void* func(void *)": always return NULL.
225 PyThread_start_new_thread() uses "void func(void *)" type, whereas
228 void (*func) (void *);
235 /* copy func and func_arg and free the temporary structure */
237 void (*func)(void *) = callback->func;
241 func(func_arg);
246 PyThread_start_new_thread(void (*func)(void *), void *arg)
286 callback->func = func;