<s:RemoteObjectid="ro1"
destination="runobject"
endpoint="http://localhost:8889/FlexJava2Demo/messagebroker/amf">
<s:methodname="testString"fault="method1_faultHandler(event)"result="method1_resultHandler(event)">
</s:method>
<s:methodn..
分类:
编程语言 时间:
2014-10-14 20:07:19
阅读次数:
136
Problem Descriplation: 加载ed_device驱动后,ifconfig不显示ed0连接。但是ifconfig ed0会打印出数据。 ifconfig ed0 192.168.5.1时出现segmentation fault。 eth0: link up, 100Mbps, full-duplex, lpa 0x4DE1 ...
分类:
其他好文 时间:
2014-10-13 19:56:27
阅读次数:
336
再谈Segmentation fault (core dumped)问题 -查找段错误原因
在前一篇文章“Segmentation fault (core dumped) ”有说了具体core dumped产生的原因,
下面主要来介绍下问题的解决与查找,在linux下一般都使用gdb进行调试,那今天我就以Ubuntu 14.04环境作为介绍,
来查找正在的core du...
分类:
其他好文 时间:
2014-10-08 18:28:25
阅读次数:
212
进来在linux下开发C++项目,遇到了非常奇怪的bug。项目需要多线程实现,在写好代码后,每当运行到线程函数内部,当内部调用其它函数如printf、fopen等时就会提示段错误(segmentation fault)。编程很久了,自觉不会出现很低级的语法错误,经仔细检查许久确实也未发现任何问题。在给很多厉害的朋友看过代码后也未能帮助找到这个bug,后来经自己一番思索终于找到问题所在。下面先给出线...
分类:
编程语言 时间:
2014-10-06 17:34:58
阅读次数:
213
Why, every fault’s condemn’d ere it be done:Mine were the very cipher of a function. . .—William Shakespeare, Measure for MeasureThe best thing about ...
分类:
编程语言 时间:
2014-10-01 14:47:31
阅读次数:
190
虚拟内存调度算法:页面置换:在地址映射过程中,若在页面中发现所要访问的页面不再内存中,则产生缺页中断(page fault)。当发生缺页中断时操作系统必须在内存选择一个页面将其移出内存,以便为即将调入的页面让出空间。OPT:最佳替换算法(optional replacement)。替换下次访问距当前...
分类:
其他好文 时间:
2014-09-25 00:44:17
阅读次数:
200
如何查看进程发生缺页中断的次数?
用ps -o majflt,minflt -C program命令查看。
majflt代表major fault,中文名叫大错误,minflt代表minor fault,中文名叫小错误。
这两个数值表示一个进程自启动以来所发生的缺页中断的次数。
发成缺页中断后,执行了那些操作?...
分类:
其他好文 时间:
2014-09-23 14:17:14
阅读次数:
256
如果指针写数据失败, 比如
*p = 1
可以进一步看, 究竟为何失败
可以用察看 /proc/{pid}/maps, 但往往这个时候,程序已经crash 了,就找不到这个文件。
那就只能在crash 之前code 插入代码看了。
写一个copyfile 的函数
static void copyfile(char * rfile, char * wfile) {
int rfd...
分类:
其他好文 时间:
2014-09-22 19:47:53
阅读次数:
153
Akka和VertX都是scala写大数据框架的极其赞的technology
Akka是用来写高concurrent,distributed,和fault tolerant event-driven的一个工具箱/库
而vertx是一个具有类似功能的framework
他们背后的general idea是很相近的,不同点在于:
In Akka you would create...
分类:
其他好文 时间:
2014-09-21 11:53:30
阅读次数:
1618
A. Practical Byzantine Fault Tolerance
1.What’s its checkpoint?
We will refer to the states produced by the execution of these requests as checkpoints and we will say that a checkpoint with...
分类:
其他好文 时间:
2014-09-21 10:34:30
阅读次数:
283