- 博客(87)
- 资源 (7)
- 收藏
- 关注
原创 Linux网络编程杂项
一. MSG_NOSIGNAL Requests not to send SIGPIPE on errors on stream oriented sockets when the other end breaks the connection. The EPIPE error is still returned.当连接断开,如果A正在发送数据, send()的返回值会有反映,并向系统
2018-01-03 21:20:39 403
转载 nginx:TIME_WAIT过多或者CLOSE_WAIT过多的状态
1 起因线上服务器nginx日志运行一段时间后,会报如下错误: 1024 worker_connections are not enough一般做法是修改worker_connections。 但实际上:该服务是用于时间比较短的连接里,并且一天最多才4000个请求。不可能会耗尽worker_connections。 除非每次连接都没有释放对应的连接。 ‘ shell>netstat
2017-06-21 11:59:09 17736
转载 Makefile显示“make: Nothing to be done for xxxx”的解决方法
Makefile显示“make: Nothing to be done for xxxx”的解决方法
2017-05-10 19:40:28 46030 5
原创 CLOCK_MONOTONIC与CLOCK_REALTIME区别
CLOCK_MONOTONIC(即monotonic time) CLOCK_REALTIME(即wall time)
2016-12-03 17:06:23 6356
原创 引用与函数默认参数
#include using namespace std;class Foo { public: Foo(int a = 0) : a_(a){} Foo(const Foo& foo) { a_ = foo.a_; }
2016-08-15 21:24:57 332
原创 待整理的知识点
1 死锁(1) http://blog.csdn.net/guoweimelon/article/details/50849533 介绍了死锁的基本概念(2) http://www.cnblogs.com/yanlingyin/archive/2011/12/29/thinkingindeadlocks.html(3) http://www.blogfshare.com/ope
2016-08-13 23:40:14 438
原创 __builtin_expect详解
if(unlikely(!something)) //表示 !something 为真 情况很少发生/* ...... */if(likely(something)) //表示 something 为真 情况经常发生
2016-08-02 11:39:28 2022 1
转载 回车(CR,'\r')和换行符(LF, '\n')的区别
“回车”(Carriage Return)和“换行”(Line Feed)起源区别
2016-04-03 17:37:15 3905 3
转载 bcopy和memcpy、bzero和memset、bcmp和memcmp的差别
bcopy和memcpy、bzero和memset、bcmp和memcmp的区别
2015-10-14 22:35:13 1421
转载 mysql_real_escape_string()--mysql数据库
unsigned long mysql_real_escape_string(MYSQL *mysql, char *to, const char *from, unsigned long length)
2015-10-13 23:57:38 1746
转载 WM_QUERYENDSESSION消息
1MSDN:The WM_QUERYENDSESSION message is sent when the user chooses to end the session or when an application calls one of the system shutdown functions. If any application returns zero, the sess
2014-11-20 20:34:27 2054
转载 小端与大端的判断和转换
1. 概念MSB:Most Significant Bit ------- 最高有效位 LSB:Least Significant Bit ------- 最低有效位
2014-11-18 21:19:38 1051
转载 判断二叉树是否是完全二叉树
问题:判断二叉树是否为完全二叉树。完全二叉树的定义是,前n-1层都是满的,第n层如有空缺,则是缺在右边,即第n层的最右边的节点,它的左边是满的,右边是空的。
2014-10-22 20:43:04 1243
精通MATLAB图像处理源代码 张强, 王正林编著
2013-11-06
OpenCV和MFC的实例+界面程序+各种图像处理操作
2013-06-18
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人