爱上香烟
发布时间:2016-04-12 20:04:43
#ifndef _ACMSG_LIST_H#define _ACMSG_LIST_H#include #include #include "../private/cfm/cfmsocket.h"//#include "ethqos.h"/** * container_of - cast a member of a structure out to the containing structure * @ptr:the pointer to the member. * @type:the type.........【阅读全文】
发布时间:2016-04-12 15:21:45
pkg-config的用法pkg-configpkg-config程序是干什么用的?简单的说就是向用户向程序提供相应库的路径、版本号等信息的程序。譬如说我们运行以下命令:pkg-config 查看gcc的CFLAGS参数$pkg-config --libs --cflags opencv会显示如下信息:-I/usr/include/opencv -l.........【阅读全文】
发布时间:2016-04-07 11:22:08
关于socket阻塞与非阻塞情况下的recv、send、read、write返回值2013-10-28 09:34 评论(0) 举报1、阻塞模式与非阻塞模式下recv的返回值各代表什么意思?有没有区别?(就我目前了解阻塞与非阻塞recv返回值没有区分,都是 <0:出错,=0:连接关闭,>0接收到数据大小,特别:返回值&nbs.........【阅读全文】