It is another typical kernel panic due to invalid address.Panic log:[ 20.896935] c3 554 (netd) Unable to handle kernel NULL pointer dereference at v.....
分类:
其他好文 时间:
2014-12-01 12:43:30
阅读次数:
355
转载:http://www.blogjava.net/xylz/archive/2010/07/06/325390.html在理解J.U.C原理以及锁机制之前,我们来介绍J.U.C框架最核心也是最复杂的一个基础类:java.util.concurrent.locks.AbstractQueuedSy...
分类:
编程语言 时间:
2014-11-29 22:51:36
阅读次数:
335
常用断点设置bpx hmemcpy bpx Lockmytask实在找不到断点可以试下面的方法:bmsg handle wm_gettext bmsg handle wm_command拦截窗口:bpx CreateWindow 创建窗口 bpx CreateWindowEx(A/W)创建窗口bpx...
分类:
其他好文 时间:
2014-11-29 20:09:43
阅读次数:
330
原文地址:http://baptiste-wicht.com/posts/2010/09/java-concurrency-part-7-executors-and-thread-pools.htmlJava Concurrency - Part 7 : Executors and thread p...
分类:
编程语言 时间:
2014-11-28 20:04:46
阅读次数:
402
VCL方法概论1. 把Delphi对象改造成一个Windows窗口,主要是要设置Handle和回调函数。在创建一个Windows窗口后,将其句柄赋值给Delphi对象的属性,这个并不难,相当于从此以后这个Delphi控件代表了这个Windows窗口,准确的说是包含了这个Windows窗口。需要指出的...
分类:
其他好文 时间:
2014-11-28 19:47:14
阅读次数:
197
OpenStack服务报错解决:2014-11-2805:06:52.2124347TRACEnova.openstack.common.periodic_taskself._handle_base_p_w_picpath(img,base_file)
2014-11-2805:06:52.2124347TRACEnova.openstack.common.periodic_taskFile"/usr/lib/python2.6/site-packages/nova/virt/libvirt/..
分类:
其他好文 时间:
2014-11-28 18:34:33
阅读次数:
442
文章名称: Real-World Concurrency
链接: http://queue.acm.org/detail.cfm?id=1454462
由于文章是领域内高人多年经验的总结,有很多地方理解不够深刻,只能先写下自己的理解。
文章首先介绍了并发行的历史:提高系统并发性的唯一目标就是提高性能。并发性提高性能的三种方式:减少、隐藏延迟;提高吞吐量。
接下来是一系列的建议:
建议1:...
分类:
其他好文 时间:
2014-11-27 16:20:13
阅读次数:
174
#include #include DWORD WINAPI ThreadFunc (LPVOID);int main (){ std::ios::sync_with_stdio(false); HANDLE hThrd = NULL; DWORD threadId = 0; ...
分类:
其他好文 时间:
2014-11-27 14:10:48
阅读次数:
112
As i need to read something from a csv file using python. I got something and put it here.Module: csvimport csvFILE_FULL_PATH = 'D:\\Work\\script\\My ...
分类:
编程语言 时间:
2014-11-27 12:39:12
阅读次数:
173
SendMessage函数向窗口发送消息
LRESULT SendMessage(
HWND hWnd, // handle to destination window
UINT Msg, // message
WPARAM wParam, // first message parameter
LPARAM lParam // s...
分类:
Windows程序 时间:
2014-11-26 22:43:44
阅读次数:
1044