将dump拖入到windbg中后,在command输入栏输入 .load wow64exts 回车 !sw 回车,就将windbg的dump,从64位模式切换到了32位模式,否则看到的call stack 对我们分析dump是没有帮助的。然后就可以使用其它的命令来分析了。比如:使用kb命令,查看.....
分类:
数据库 时间:
2014-06-28 20:44:57
阅读次数:
305
原地址:http://blog.jobbole.com/63320/本文由伯乐在线-Kevin Sun翻译自sahandsaba。欢迎加入技术翻译小组。转载请参见文章末尾处的要求。从我开始学习python的时候,我就开始自己总结一个python小技巧的集合。后来当我什么时候在Stack Overfl...
分类:
编程语言 时间:
2014-06-28 12:13:30
阅读次数:
300
微软近期Open的职位:MSIT Dynamics CRM Software Developer (SDE, Microsoft China, Beijing)Are you interested in shaping the future vision of how we implement Dy...
分类:
其他好文 时间:
2014-06-24 09:15:35
阅读次数:
302
1.HANDLE CreateThread( LPSECURITY_ATTRIBUTES lpThreadAttributes, // SD SIZE_T dwStackSize, // initial stack size LPTHREAD_START_ROUTINE lpStartAddress...
分类:
编程语言 时间:
2014-06-22 23:48:03
阅读次数:
291
Next Permutation:Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangeme...
分类:
其他好文 时间:
2014-06-22 23:35:19
阅读次数:
262
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.get(key)- Get the valu...
分类:
其他好文 时间:
2014-06-21 09:18:50
阅读次数:
263
Description: Implement pow(x,n).分析: 求幂次运算,典型的分治算法来解。 因为pow(x,n/2)*pow(x,n/2) 有着重复运算,分治法就会非常快O(log n) 1 class Solution { 2 public: 3 double findval...
分类:
其他好文 时间:
2014-06-21 07:26:08
阅读次数:
162
直接递归的消去规则:基本思路:将递归调用的地方用等价的非递归代码来代替,并对return语句做适当处理。13条规则:处理直接递归调用和return语句,将之转换成等价的迭代代码。 初始化 ⑴ 在过程的开始部分,插入说明为栈的代码并将其初始化为空: StackType Stack[1..SIZE] ....
分类:
其他好文 时间:
2014-06-20 21:43:58
阅读次数:
257
http://www.codejava.net/frameworks/spring/spring-mvc-sample-application-for-downloading-filesn this article, we are going to show you how to implement...
分类:
移动开发 时间:
2014-06-20 19:06:09
阅读次数:
623
在java虚拟机规范一书中总结出java虚拟机的结构,在这画出粗略图,方便以后记起。后面写下各个项的一些解析。java 虚拟机栈: 每一条Java虚拟机线程都有自己私有的Java虚拟机栈(Java Virtual Machine Stack)①,这个栈与线程同时创建,用于存储栈帧(Frames, §...
分类:
编程语言 时间:
2014-06-19 07:25:22
阅读次数:
289