Linux 2.6.36以后file_operations和DECLARE_MUTEX 的变化http://blog.csdn.net/heanyu/article/details/6757917
1,在include/linux/semaphore.h 中将#define DECLARE_MUTEX(name) 改成了 #define DEFINE_SEMAPHORE(name)
【命名更加科学, mutex本是另外一个东西】
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) DECLARE_MUTEX(led_sem); #else DEFINE_SEMAPHORE(led_sem); #endif
时间: 2024-10-08 05:40:03