上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 127 下一页
摘要: 转自:https://blog.csdn.net/Ivan804638781/article/details/100740857 相关链接: 【开发日常】【死锁】写一个简单的死锁demo 【同步与并发】【死锁】什么是死锁?产生死锁的原因及必要条件?如何避免死锁? 【调试工具】【lockdep】Lin 阅读全文
posted @ 2022-01-07 15:12 Sky&Zhang 阅读(590) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/ldinvicible/article/details/50911947 转载自MTKFAQ: KE概念 Android OS由3层组成,最底层是kernel,上面是native bin/lib,最上层是java层: 任何软件都有可能发生异常,比如野 阅读全文
posted @ 2022-01-07 15:01 Sky&Zhang 阅读(721) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/kris_fei/article/details/77936620 1.1 介绍这一章我们主要对如何分析oops做些描述,以及说下目前我知道的方法。当然,这里以以下例子来描述。 1.2 定位某一行首先要找到发生exception的函数,虽然bug并不 阅读全文
posted @ 2022-01-07 14:58 Sky&Zhang 阅读(633) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/liuwanpeng/p/7833000.html ARM处理器从cortex系列开始集成NEON处理单元,该单元可以简单理解为协处理器,专门为矩阵运算等算法设计,特别适用于图像、视频、音频处理等场景,应用也很广泛。 本文先对NEON处理单元进行 阅读全文
posted @ 2022-01-06 13:53 Sky&Zhang 阅读(729) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/rikeyone/article/details/95482978 本文基于Linux-4.14 1.earlyconearly console,顾名思义,他表示的就是早期的console设备,主要用于在系统启动阶段的内核打印的输出,由于linux内 阅读全文
posted @ 2022-01-06 13:37 Sky&Zhang 阅读(2363) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/skyflying2012/article/details/41078349 最近工作在调试usb虚拟串口,让其作为kernel启动的调试串口,以及user空间的输入输出控制台。 利用这个机会,学习下printk如何选择往哪个console输出以及u 阅读全文
posted @ 2022-01-06 13:35 Sky&Zhang 阅读(1089) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/LoyenWang/p/14589296.html 背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: KVM版本: 阅读全文
posted @ 2021-12-30 23:06 Sky&Zhang 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/LoyenWang/p/12386281.html 背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: Kernel 阅读全文
posted @ 2021-12-30 23:04 Sky&Zhang 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/LoyenWang/p/12316660.html 背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: Kernel 阅读全文
posted @ 2021-12-30 23:03 Sky&Zhang 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/LoyenWang/p/12249106.html 背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: Kernel 阅读全文
posted @ 2021-12-30 23:01 Sky&Zhang 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 转自:https://zhuanlan.zhihu.com/p/112203100 1、背景知识 1.1 什么是调度器 通常来说,操作系统是应用程序和可用资源之间的媒介。 典型的资源有内存和物理设备。但是CPU也可以认为是一个资源,调度器可以临时分配一个任务在上面执行(单位是时间片)。调度器使得我们 阅读全文
posted @ 2021-12-30 23:00 Sky&Zhang 阅读(994) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/arnoldlu/p/8659981.html 目录: 《Linux中断管理》 《Linux中断管理 (1)Linux中断管理机制》 《Linux中断管理 (2)软中断和tasklet》 《Linux中断管理 (3)workqueue工作队列》 阅读全文
posted @ 2021-12-09 13:46 Sky&Zhang 阅读(598) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/wallwind/article/details/49696021 在看开源代码的时候,尤其是获取cpu核数的时候,发现了一个很好用的一个函数 #include <unistd.h> long sysconf(int name); 通过名字可以猜到, 阅读全文
posted @ 2021-12-06 11:20 Sky&Zhang 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/linhaostudy/p/12052673.html 阅读目录 0x00 宏的基本知识 Linux内核中do{...}while(0)意义: 0x01 常见宏整理 __CONCAT宏 BUG_ON(condition) BUILD_BUG_ON 阅读全文
posted @ 2021-11-23 14:15 Sky&Zhang 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/x_wukong/p/6057148.html 转自:http://www.linuxidc.com/Linux/2013-12/93637.htm 将Linux 移植到新的体系结构时,开发者遇到的若干问题都与不正确的数据类型有关。坚持使用严格的 阅读全文
posted @ 2021-11-23 14:13 Sky&Zhang 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 转自:http://linuxperf.com/?p=184 在前文中,我们介绍了在RHEL6及较早的kernel上诊断slab泄漏问题的两种方法,可以说相当麻烦了,这是因为以前的slab没有提供原生的故障诊断机制。Linux kernel自2.6.23之后采用的Slub自带了故障诊断机制,就方便很 阅读全文
posted @ 2021-11-17 15:52 Sky&Zhang 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/u010936265/article/details/108330347?spm=1001.2101.3001.6650.6&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7 阅读全文
posted @ 2021-11-11 01:56 Sky&Zhang 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/pengdonglin137/p/11960623.html 阅读目录(Content) 参考 环境 概述 软件版本 正文 下载和编译libevent 下载和编译ncurses 下载和编译tmux 拷贝terminfo配置文件 启动开发板,查看当 阅读全文
posted @ 2021-11-09 22:32 Sky&Zhang 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.ruanyifeng.com/blog/2019/10/tmux.html 作者: 阮一峰 日期: 2019年10月21日 Tmux 是一个终端复用器(terminal multiplexer),非常有用,属于常用的开发工具。 本文介绍如何使用 Tmux。 一、Tmux 阅读全文
posted @ 2021-11-09 22:30 Sky&Zhang 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/Guet_Kite/article/details/101791125 你好!这里是风筝的博客, 欢迎和我一起交流。 trace是内核自带的工具,相比于perf工具,trace只管抓trace数据并没有分析,perf在trace数据分析方面做出了很多 阅读全文
posted @ 2021-11-09 22:14 Sky&Zhang 阅读(2376) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 127 下一页