Lines Matching defs:thread
231 if (!dev->raw || !dev->raw->thread)
234 wake_up_process(dev->raw->thread);
551 * edge and waking up the rc thread, 15 ms after the first edge
635 struct task_struct *thread;
637 thread = kthread_run(ir_raw_event_thread, dev->raw, "rc%u", dev->minor);
638 if (IS_ERR(thread))
639 return PTR_ERR(thread);
641 dev->raw->thread = thread;
666 kthread_stop(dev->raw->thread);