singlethread 썸네일형 리스트형 singlethread_workqueue 사용 아래와 같이 함수 구정을 하면 됩니다. 간단한 함수들이므로 설명은 생략 합니다. struct work_struct my_int_work; struct workqueue_struct *my_wq = NULL; void test-device_int_irq_handler_sched(void) { queue_work(my_wq, &my_int_work); } void my_interrupt_event_work(struct work_struct *p) { printk(KERN_ERR "my_interrupt_event_work() is called\n"); ... // 실제 work } static int my_device_probe(struct i2c_client *client, const struct i2c_.. 더보기 이전 1 다음