全部博文(2759)
发布时间:2013-01-15 02:15:06
#strace -o log.txt ./t其中 log.txt 是strace命令创建的文件用以保存应用程序中所有的系统调用的信息 t 文件时通过 gcc 编译出的可执行的文件 如:gcc test.c -o ttest.c 点击(此处)折叠或打开#include <stdio.h>#include <fcntl.h>#include <unistd.h>#include <malloc.h>int main(void){ int  ......【阅读全文】
发布时间:2012-11-27 07:18:20
epoll - I/O event notification facility 在linux的网络编程中,很长的时间都在使用select来做事件触发。在linux新的内核中,有了一种替换它的机制,就......【阅读全文】
发布时间:2012-11-20 04:15:46
原文: <a href="http://www.cppblog.com/feixuwu/archive/2010/07/10/119995.html" target="_blank" target="_blan......【阅读全文】