发布时间:2015-12-15 15:09:52
linux下当连接断开,还发数据的时候,不仅send()的返回值会有反映,而且还会向系统发送一个异常消息,如果不作处理,系统会出BrokePipe,程序会退出,这对于服务器提供稳定的服务将造成巨大的灾难。为此,send()函数的最后一个参数可以设MSG_NOSIGNAL,禁止send()函数向系统发送异常消息.........【阅读全文】
发布时间:2015-11-10 11:57:43
点击(此处)折叠或打开#include <iostream>class Test1{public: static void getuid() { .........【阅读全文】
发布时间:2015-11-09 10:21:16
The GNU library provides a convenient way to retry a call after a temporary failure, with the macro TEMP_FAILURE_RETRY: — Macro: TEMP_FAILURE_RETRY (expression)This macro evaluates expression once, and examines its value as type long int. If the value equals -1, that indicates a failu.........【阅读全文】