Home | History | Annotate | Download | only in src

Lines Matching defs:cmd_thread

682     mm_jpeg_job_cmd_thread_t *cmd_thread =
688 rc = sem_wait(&cmd_thread->job_sem);
704 node = (mm_jpeg_job_q_node_t*)mm_jpeg_queue_deq(&cmd_thread->job_queue);
748 mm_jpeg_job_cmd_thread_t * cmd_thread = &my_obj->job_mgr;
759 mm_jpeg_queue_enq(&cmd_thread->job_queue, node);
760 sem_post(&cmd_thread->job_sem);
763 if (pthread_join(cmd_thread->pid, NULL) != 0) {
766 mm_jpeg_queue_deinit(&cmd_thread->job_queue);
768 sem_destroy(&cmd_thread->job_sem);
769 memset(cmd_thread, 0, sizeof(mm_jpeg_job_cmd_thread_t));