摘要: 点击查看代码 // 基于32位系统分析 #define lsize sizeof(word) // sizeof(word) == 4 // 为什么是lsize - 1?32位系统4字节对齐,地址跨度是0x0, 0x4, 0x8,0xC...... // a56爆大奖在线娱乐4字节对齐的地址,最低两个bit都是0, 阅读全文
posted @ 2024-06-27 14:17 找壳蜗牛 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Linux 内核模块加载程序 模块加载函数 static int __init test_init(void) { } module_init(test_init); 模块卸载函数 static void __exit test_exit(void) { } module_exit(test_exi 阅读全文
posted @ 2024-06-19 18:04 找壳蜗牛 阅读(1) 评论(0) 推荐(0) 编辑