de265_thread       40 libde265-1.0.3/libde265/threads.cc int  de265_thread_create(de265_thread* t, void *(*start_routine) (void *), void *arg) { return pthread_create(t,NULL,start_routine,arg); }
de265_thread       41 libde265-1.0.3/libde265/threads.cc void de265_thread_join(de265_thread t) { pthread_join(t,NULL); }
de265_thread       42 libde265-1.0.3/libde265/threads.cc void de265_thread_destroy(de265_thread* t) { }
de265_thread       57 libde265-1.0.3/libde265/threads.cc int  de265_thread_create(de265_thread* t, LPTHREAD_START_ROUTINE start_routine, void *arg) {
de265_thread       65 libde265-1.0.3/libde265/threads.cc void de265_thread_join(de265_thread t) { WaitForSingleObject(t, INFINITE); }
de265_thread       66 libde265-1.0.3/libde265/threads.cc void de265_thread_destroy(de265_thread* t) { CloseHandle(*t); *t = NULL; }
de265_thread       58 libde265-1.0.3/libde265/threads.h int  de265_thread_create(de265_thread* t, void *(*start_routine) (void *), void *arg);
de265_thread       60 libde265-1.0.3/libde265/threads.h int  de265_thread_create(de265_thread* t, LPTHREAD_START_ROUTINE start_routine, void *arg);
de265_thread       62 libde265-1.0.3/libde265/threads.h void de265_thread_join(de265_thread t);
de265_thread       63 libde265-1.0.3/libde265/threads.h void de265_thread_destroy(de265_thread* t);
de265_thread      127 libde265-1.0.3/libde265/threads.h   de265_thread thread[MAX_THREADS];