随笔分类 -  源码阅读

模仿是学习的第一步
Nginx/core/nginx
摘要:nginx.h /* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #ifndef _NGINX_H_INCLUDED_ #define _NGINX_H_INCLUDED_ #define nginx_version 1000 阅读全文

posted @ 2016-02-22 23:03 Excavator

Nginx/core/ngx_core.h
摘要:/* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #ifndef _NGX_CORE_H_INCLUDED_#define _NGX_CORE_H_INCLUDED_ typedef struct ngx_module_s n 阅读全文

posted @ 2016-02-22 22:57 Excavator

Nginx/core/ngx_list
摘要:ngx_list.h /* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #ifndef _NGX_LIST_H_INCLUDED_ #define _NGX_LIST_H_INCLUDED_ #include <ngx_con 阅读全文

posted @ 2016-02-22 22:56 Excavator

Nginx/core/ngx_string
摘要:ngx_string.h /* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #ifndef _NGX_STRING_H_INCLUDED_ #define _NGX_STRING_H_INCLUDED_ #include <n 阅读全文

posted @ 2016-02-22 22:54 Excavator

Nginx/core/ngx_array
摘要:ngx_array.h /* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ //参考 http://blog.csdn.net/sunhappy2200/article/details/5915189 // http://ten 阅读全文

posted @ 2016-02-22 22:53 Excavator

Nginx/core/ngx_palloc
摘要:ngx_palloc.h /* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #ifndef _NGX_PALLOC_H_INCLUDED_ #define _NGX_PALLOC_H_INCLUDED_ #include <n 阅读全文

posted @ 2016-02-22 22:27 Excavator

Nginx | Outline
摘要:Nginx 系列(持续更新) 阅读全文

posted @ 2015-10-11 18:57 Excavator 阅读(143) 评论(0) 推荐(0)

glibc | strcpy
摘要:char *strcpy(char *dest, const char *src); /* Copy SRC to DEST. */ 阅读全文

posted @ 2015-10-01 22:53 Excavator 阅读(176) 评论(0) 推荐(0)

glibc | strlen
摘要:size_t strlen(const char *str); /* Return the length of the null-terminated string STR. Scan for the null terminator quickly by testing four bytes at a time. */ 阅读全文

posted @ 2015-10-01 22:52 Excavator 阅读(200) 评论(0) 推荐(0)

glibc | 和 libc 的关系
摘要:libc 是 Linux 下的 ANSI C 函数库;glibc 是 Linux 下的 GUN C 函数库。 阅读全文

posted @ 2015-10-01 15:47 Excavator 阅读(259) 评论(0) 推荐(0)

导航