上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 57 下一页

2015年5月19日

c++ linux 下的调试工具及用法

摘要: 1当程序出现core的时候:gdb out[your program] core.out.45726.1431954543 可以看到程序崩溃时候的堆栈信息。2 valgrind ./out 由于valgrind 默认检查 memery check较完整的命令:valgrind --tool=me... 阅读全文

posted @ 2015-05-19 14:39 雨渐渐 阅读(217) 评论(0) 推荐(0) 编辑

2015年5月16日

内存工具

摘要: http://www.doc88.com/p-9949431121835.html 阅读全文

posted @ 2015-05-16 03:48 雨渐渐 阅读(72) 评论(0) 推荐(0) 编辑

2015年5月15日

条件变量

摘要: http://my.oschina.net/kiterunner24/blog/271611 阅读全文

posted @ 2015-05-15 19:24 雨渐渐 阅读(89) 评论(0) 推荐(0) 编辑

segment fault

摘要: http://blog.chinaunix.net/uid-23069658-id-3959636.html 阅读全文

posted @ 2015-05-15 18:53 雨渐渐 阅读(122) 评论(0) 推荐(0) 编辑

2015年5月13日

shell dev null 是什么

摘要: 1:在不想把标准输出和标准出错信息输出到控制台,也不想重定向到文件时经常使用 2:不能忽略其读入功能。从/dev/null读入时都是0 3:系统的垃圾桶,类似于Windows的回收站,不同的是这个设备有去无回,而回收站还是可以回收的。如果程序有输出(标准、错误等),而你又不想让它输出到任何文件、终端... 阅读全文

posted @ 2015-05-13 12:21 雨渐渐 阅读(326) 评论(0) 推荐(0) 编辑

2015年5月12日

c++ break while

摘要: #include #include #include #include "destory_free_while.h"using namespace std;Worker::Worker() { shutdown = false; num_thread = 10;}void Worker:... 阅读全文

posted @ 2015-05-12 11:14 雨渐渐 阅读(604) 评论(0) 推荐(0) 编辑

2015年5月8日

C+= concurrent_queue 线程安全测试

摘要: 更推荐使用:http://www.boost.org/doc/libs/1_56_0/doc/html/boost/lockfree/queue.html#include #include #include using namespace std;#define NUM_THREAD 10class... 阅读全文

posted @ 2015-05-08 13:23 雨渐渐 阅读(613) 评论(0) 推荐(0) 编辑

2015年5月7日

c++ 枚举 在函数中的应用

摘要: #include using namespace std;enum RespErrNo { SUCCESS = 0, INVALID_URL = 1, INVALID_SRC_ID = 2};RespErrNo fun(){ return INVALID_URL;}int m... 阅读全文

posted @ 2015-05-07 22:34 雨渐渐 阅读(626) 评论(0) 推荐(1) 编辑

2015年5月6日

shell脚本积累

摘要: 统计当前目录下文件夹的大小for d in $(ls)do du -sh ./$ddone获取之前日期date +"%Y%m%d" -d "-n days"也可以这样写date -d '-6 days' +%Y%m%ddate +"%Y%m%d" -d "-6 days" http://www... 阅读全文

posted @ 2015-05-06 18:14 雨渐渐 阅读(223) 评论(0) 推荐(0) 编辑

2015年5月4日

c++ 读写锁

摘要: #ifndef THREAD_UTIL_H#define THREAD_UTIL_H#include namespace spider { class AutoLock { pthread_mutex_t * _lock; public: AutoLock(p... 阅读全文

posted @ 2015-05-04 23:36 雨渐渐 阅读(12951) 评论(0) 推荐(1) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 57 下一页

导航