会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
aspirs
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
39
下一页
2021年9月30日
arm archtecture
摘要: arm archtecture ARMv8 架构与指令集.学习笔记 https://www.cnblogs.com/lvdongjie/p/6644821.html arm registers https://developer.arm.com/documentation/ddi0500/e/deb
阅读全文
posted @ 2021-09-30 14:12 aspirs
阅读(213)
评论(0)
推荐(0)
2021年9月28日
android framework misc
摘要: android framework misc Intent发送与接收 系统(framework)发送Intent,可以发送Intent的API如下:sendBroadcastsendOrderedBroadcastsendBroadcastAsUser apk注册Intent接收,在系统(frame
阅读全文
posted @ 2021-09-28 14:55 aspirs
阅读(146)
评论(0)
推荐(0)
2021年9月25日
kernel slab misc
摘要: kernel slab misc console:/sys/kernel/slab # ls :0000008 bio-0 kioctx :0000016 bio-1 kmalloc-128 :0000024 bio-2 kmalloc-1k :0000032 bio-3 kmalloc-256 :
阅读全文
posted @ 2021-09-25 20:28 aspirs
阅读(139)
评论(0)
推荐(0)
ftrace code解析
摘要: ftrace code ftrace event kmem:rss_stat trace event definition include/trace/events/kmem.h TRACE_EVENT(rss_stat, TP_PROTO(struct mm_struct *mm, int mem
阅读全文
posted @ 2021-09-25 19:13 aspirs
阅读(344)
评论(0)
推荐(0)
2021年9月24日
android malloc_debug tool
摘要: android malloc_debug tool malloc_debug使用方法 130|console:/ # cat /data/local.prop libc.debug.malloc.options=backtrace=16 guard=8 fill_on_free=16 free_tr
阅读全文
posted @ 2021-09-24 17:30 aspirs
阅读(1846)
评论(0)
推荐(0)
2021年9月11日
linux kernel boot sequence
摘要: linux kernel boot sequence early_param回调执行时间 [ 0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 4.19.116+ #7[ 0.000000] Hardware name: machine_name(D
阅读全文
posted @ 2021-09-11 14:04 aspirs
阅读(191)
评论(0)
推荐(0)
2021年9月10日
linux驱动入口函数module_init何时被调用
摘要: linux驱动入口函数module_init何时被调用 被上面的宏处理过后,变成__initcall_func6 __used加入到内核映像的".initcall"区。内核的加载的时候,会搜索".initcall"中的所有条目,并按优先级加载它们,普通驱动程序的优先级是6。其它模块优先级列出如下:值
阅读全文
posted @ 2021-09-10 15:11 aspirs
阅读(431)
评论(0)
推荐(0)
2021年9月5日
一个简单字符驱动kernel module以及对应测试程序example
摘要: 一个简单字符驱动kernel module以及对应测试程序example module Makefile ifneq ($(KERNELRELEASE),) MODULE_NAME = slub_debug_test_module $(MODULE_NAME)-objs := slub_debug_
阅读全文
posted @ 2021-09-05 20:12 aspirs
阅读(107)
评论(0)
推荐(0)
android C native测试程序example Android.bp
摘要: 一个简单的android测试程序的Android.bp example如下,在android根目录下make slub_debug_test.bin即可: cc_binary { srcs: ["slub_debug_test.c"], name: "slub_debug_test.bin", pr
阅读全文
posted @ 2021-09-05 18:51 aspirs
阅读(126)
评论(0)
推荐(0)
内联汇编inline assembly(ARM)
摘要: 内联汇编inline assembly(ARM) 而 C 中嵌入汇编代码由 gcc 编译器实现的,实现也非常简单,使用由编译器提供的 asm 或者 __asm__ 关键字即可,这两者没有任何区别,然后将需要执行的汇编指令使用("")包含起来即可,对应的汇编指令就会被执行。 我们来看看下面的嵌入汇编代
阅读全文
posted @ 2021-09-05 18:09 aspirs
阅读(3898)
评论(0)
推荐(2)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
39
下一页
公告