标签:
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
内核必看: Linux 2.6.36以后file_operations和DECLARE_MUTEX 的变化
标签:
原文地址:http://www.cnblogs.com/mylinux/p/5497609.html