我知道我们可以使用pthread_mutex_init
和pthread_mutex_lock
来实现线程互斥。但是如何在内核模块中使用kthread
?
答案 0 :(得分:12)
您不能使用pthread_mutex_*
功能,因为这些是仅限用户空间的呼叫。在内核中使用linux/mutex.h提供的互斥锁:
struct mutex my_mutex; /* shared between the threads */
mutex_init(&my_mutex); /* called only ONCE */
/* inside a thread */
mutex_lock(&my_mutex);
/* do the work with the data you're protecting */
mutex_unlock(&my_mutex);