de265_thread_create 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_create 57 libde265-1.0.3/libde265/threads.cc int de265_thread_create(de265_thread* t, LPTHREAD_START_ROUTINE start_routine, void *arg) {