摘要: 定义fttp模块方式很简单,比如:ngx_module_t ngx_http_mytest_module;其中,ngx_module_t是一个Nginx模块的数据结构。typedef struct ngx_module_s ngx_module_t;struct ngx_module_s{ #... 阅读全文
posted @ 2014-07-05 20:32 合唱团abc 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 整型的封装typedef intptr_t ngx_int _t;//有符号整型typedef uintptr_t ngx_uint_t;//无符号整型字符串的封装typedef struct{ size_t len; u_char *data; }ngx_str_t;链表容器... 阅读全文
posted @ 2014-07-05 19:23 合唱团abc 阅读(303) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/zg_hover/article/details/2553321守护进程(Daemon)是运行在后台的一种特殊进程。它独立于控制终端并且周期性地执行某种任务或等待处理某些发生的事件。守护进程是一种很有用的进程。 Linux的大多数服务器就是用守护进程实现的。... 阅读全文
posted @ 2014-07-05 13:56 合唱团abc 阅读(245) 评论(0) 推荐(0) 编辑
摘要: vs2013的结果是1,4,4,8 因为Y,Z继承自X,会有指针指向父类(虚继承)。该指针要么指向virtual base class subobject,要么指向一个相关表格,表格中存放的是virtual base class subobject的地址或偏移量(一般当当前class有多个直接vir 阅读全文
posted @ 2014-07-05 10:37 合唱团abc 阅读(284) 评论(0) 推荐(0) 编辑