上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 54 下一页
摘要: 参考链接:https://blog.csdn.net/qqliyunpeng/article/details/105565528 阅读全文
posted @ 2022-03-01 17:49 cogitoergosum 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 文件包含: #include<linux/timer.h> 声明文件位置: linux-3.19.3/include/linux/timer.h 初始化定时器 init_timer(struct timer_list *timer) setup_timer(struct timer_list *ti 阅读全文
posted @ 2022-03-01 11:26 cogitoergosum 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 1、参考链接 https://zhuanlan.zhihu.com/p/89439043 rcu锁用于替换spin_lock 阅读全文
posted @ 2022-02-28 18:21 cogitoergosum 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 1、spin_lock 不能处理硬件中断 2、spin_lock_irq 不能处理同个中断的多个锁 3、spin_lock_irqsave 解决上述锁的问题 参考链接: https://www.byteisland.com/自旋锁-spin_lock、-spin_lock_irq-以及-spin_l 阅读全文
posted @ 2022-02-28 18:18 cogitoergosum 阅读(142) 评论(0) 推荐(0) 编辑
摘要: top half 用于处理紧急事件 buttom half 用于处理非紧急事件,承接top half 接下来要处理的 buttom half 一般通过softirqs、tasklets、workqueues 软中断与硬中断的另_点区别是’软中断的处理函数必须是可重入的, 软中断的执行允许被硬中断抢占 阅读全文
posted @ 2022-02-23 08:50 cogitoergosum 阅读(62) 评论(0) 推荐(0) 编辑
摘要: platform_device_register->platform_device_add 阅读全文
posted @ 2022-02-22 17:30 cogitoergosum 阅读(15) 评论(0) 推荐(0) 编辑
摘要: uboot的cpu、内存的配置位置 board/{soc名称} 阅读全文
posted @ 2022-02-17 10:24 cogitoergosum 阅读(325) 评论(0) 推荐(0) 编辑
摘要: setenv serverip 192.168.9.120 setenv ipaddr 192.168.9.233 setenv bootcmd tftp 41000000 uImage\;tftp 42000000 exynos4412-fs4412.dtb\;bootm 41000000 - 4 阅读全文
posted @ 2022-02-16 17:09 cogitoergosum 阅读(144) 评论(0) 推荐(0) 编辑
摘要: command1 & command2 & command3 三个命令同时执行 command1; command2; command3 不管前面命令执行成功没有,后面的命令继续执行 command1 && command2 只有前面命令执行成功,后面命令才继续执行 阅读全文
posted @ 2022-02-15 15:25 cogitoergosum 阅读(304) 评论(0) 推荐(0) 编辑
摘要: svn propset svn:eol-style LF filename 参考链接:https://stackoverflow.com/questions/8024740/whats-the-best-way-to-have-svneol-style-native-for-text-files-b 阅读全文
posted @ 2022-02-10 17:49 cogitoergosum 阅读(88) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 54 下一页