在编写驱动过程分析中会遇到许多难找的问题,这时候调试的方法就很重要了,下面介绍的是利用打印的方法调试驱动,这种方法同样可以用在应用的调试过程中,而且很有效。 1、prink的原理 首先介绍一下打印的函数prink的原理,printk的原理是最终打印在终端上的。所以只要是能成为终端的设备均可被打印,比 ...
分类:
其他好文 时间:
2019-08-11 01:05:44
阅读次数:
102
A function is called pure function if it always returns the same result for same argument values and it has no side effects like modifying an argument ...
分类:
其他好文 时间:
2019-07-26 19:31:54
阅读次数:
109
Sprint @Transnational is being ignored in the following cases:1. when the caller method is calling the @Transaction annotated method from the same cla ...
分类:
编程语言 时间:
2019-07-14 18:09:46
阅读次数:
208
【异常提示】 org.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of com.mi.domain.Department.id java.lang.IllegalArgumen ...
分类:
数据库 时间:
2019-07-13 09:22:25
阅读次数:
133
参考https://www.cnblogs.com/CloudMan6/p/5662236.html BackUp是将Volume备份到别的地方(备份设备),将来可以通过restore操作恢复。 BackUp VS Snapshot 查看backup功能好像与snapshot很相似,都可以保存vol ...
分类:
其他好文 时间:
2019-07-04 00:19:33
阅读次数:
103
ok fine you win/ 网上有些人观点是native方法可以不用去管,有个观点帮助到我“取决于厂商的具体实现” 但谷歌翻译。。。于是我去有道🤣给出的例句中的意思“对实现做出决定时发生”, 那看来就是notify方法具体要看实现方式。继续找notify的源码,得出的结果是由hostspot ...
分类:
其他好文 时间:
2019-06-30 19:18:01
阅读次数:
273
35.并行和并发有什么区别? 36.线程和进程的区别? 37.守护线程是什么? 38.创建线程有哪几种方式? 39.说一下 runnable 和 callable 有什么区别? 40.线程有哪些状态? 41.sleep() 和 wait() 有什么区别? 42.notify()和 notifyAll ...
分类:
编程语言 时间:
2019-06-29 13:01:22
阅读次数:
111
redis reshard 重新分槽(slots) https://github.com/antirez/redis/issues/5029 redis 官方已确认该bug redis 集群重新(reshard)分片故障 [ERR] Calling MIGRATE ERR Syntax error, ...
分类:
其他好文 时间:
2019-06-17 12:51:48
阅读次数:
129
下面给出两道POJ上的问题,看如何用穷举法解决。 【例9】Calling Extraterrestrial Intelligence Again(POJ 1411) Description A message from humans to extraterrestrial intelligence ...
分类:
其他好文 时间:
2019-06-13 13:31:59
阅读次数:
72
初识递归 定义 在函数中调用自身函数的函数. 最大递归深度默认是997/998 —— 是python从内存角度出发做得限制 递归的优缺点 如果递归次数太多,就不适合使用递归来解决问题. 优点 会让代码变得简单 缺点 占用内存 ...
分类:
其他好文 时间:
2019-06-10 09:17:42
阅读次数:
77