摘要: linux内核中的宏ffs(x) linux内核中ffs(x)宏是平台相关的宏,在arm平台,该宏定义在 arch/arm/include/asm/bitops.h #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); }) __t 阅读全文
posted @ 2018-05-27 09:10 QIYUEXIN 阅读(1402) 评论(0) 推荐(0)