将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
1.HANDLE CreateThread( LPSECURITY_ATTRIBUTES lpThreadAttributes, // SD SIZE_T dwStackSize, // initial stack size LPTHREAD_START_ROUTINE lpStartAddress...
分类:
编程语言 时间:
2014-06-22 23:48:03
阅读次数:
291
通常struts.xml都是如下形式: struts元素下有五个元素,只讲解package、constant、include;package: 在Struts2框架中是通过包来管理action、result、interceptor、interceptor-stack等配置信息的。属性:n...
分类:
其他好文 时间:
2014-06-22 23:29:51
阅读次数:
296
深度优先算法
问题
给定一个有向图,判断其顶点能否到达另外一个顶点。
解决办法
使用深度优先算法,和无向图中的是一样的。
代码
import java.util.Stack;
/**
* Created by caipeichao on 14-6-11.
*/
public class Digrap...
分类:
其他好文 时间:
2014-06-22 21:32:28
阅读次数:
250
先普及小知识:
STL 中栈的使用方法(stack)
基本操作:
push(x) 将x加入栈中,即入栈操作
pop() 出栈操作(删除栈顶),只是出栈,没有返回值
top() 返回第一个元素(栈顶元素)
size() 返回栈中的元素个数
empty() 当栈为空时,返回 true
STL 中队列的使用(queue)
基本操作:...
分类:
其他好文 时间:
2014-06-22 19:09:51
阅读次数:
169
TGLStackedViewControllerA stack layout with gesture-based reordering using UICollectionView -- inspired by Passbook and Reminders apps.这是一种使用了UICollec...
分类:
其他好文 时间:
2014-06-22 10:47:19
阅读次数:
290
一介绍:
`.ARM.exidx` is the section containing information for unwinding the stack. If your C program has functions that print out a stack backtrace, the functions will likely depend on this section bei...
分类:
其他好文 时间:
2014-06-22 00:31:07
阅读次数:
618
1.顺序容器的类型顺序容器:vector 支持快速随机访问list 支持快速插入/删除deque 双端队列顺序容器适配器:stack 后进先出(LIFO)栈queue 先进先出(FIFO)队列priority_queue 有优先级管理的队列
分类:
其他好文 时间:
2014-06-21 15:31:26
阅读次数:
235
直接递归的消去规则:基本思路:将递归调用的地方用等价的非递归代码来代替,并对return语句做适当处理。13条规则:处理直接递归调用和return语句,将之转换成等价的迭代代码。 初始化 ⑴ 在过程的开始部分,插入说明为栈的代码并将其初始化为空: StackType Stack[1..SIZE] ....
分类:
其他好文 时间:
2014-06-20 21:43:58
阅读次数:
257