thread_arg         57 compat/os2threads.h     struct thread_arg *thread_arg = arg;
thread_arg         59 compat/os2threads.h     thread_arg->start_routine(thread_arg->arg);
thread_arg         61 compat/os2threads.h     av_free(thread_arg);
thread_arg         66 compat/os2threads.h     struct thread_arg *thread_arg;
thread_arg         68 compat/os2threads.h     thread_arg = av_mallocz(sizeof(struct thread_arg));
thread_arg         70 compat/os2threads.h     thread_arg->start_routine = start_routine;
thread_arg         71 compat/os2threads.h     thread_arg->arg = arg;
thread_arg         73 compat/os2threads.h     *thread = _beginthread(thread_entry, NULL, 256 * 1024, thread_arg);