全部博文(389)
发布时间:2018-07-30 14:38:34
备忘转自:http://www.spongeliu.com/415.htmllinux内核和其他一些开源的代码中,经常会遇到这样的代码:do{ ... }while(0)这样的代码一看就不是一个循环,do..while表面上在这里一点意义都没有,那么为什么要这么用呢?实际上,do{...}while(0)的作用远大于美化你的代.........【阅读全文】
发布时间:2018-07-30 14:37:17
先总结:1、zmalloc的原理是每次分配内存时都多分配一个sizeof(size_t)大小的空间用来记录本次分配的内存大小,相应的释放内存时也需要是否多分配的那块内存。2、用一个全局变量用来记录分配的总内存大小,这样malloc时增加该值,free时减该值。下面是转载:zmalloc.hzmalloc.c宏变量说明:其他.........【阅读全文】
发布时间:2018-07-06 09:56:23
Table of contentsIntroductionHow atomic variables workAtomic variables size limitationsUse casesThe real thing…Time to see some actionPrecautionsConslusionHow atomic variables workBACK TO TOCThis is actually quiet simple. Intel x86 and x86_64 processor a.........【阅读全文】
发布时间:2018-07-06 08:45:24
转自:https://www.cnblogs.com/274914765qq/p/4547621.html一、简介跳表(skiplist)是一个非常优秀的数据结构,实现简单,插入、删除、查找的复杂度均为O(logN)。LevelDB的核心数据结构是用跳表实现的,redis的sorted set数据结构也是有跳表实现的。代码在这里:http://flyingsnail.blog.51cto.com/5341669/10200.........【阅读全文】
发布时间:2018-07-04 15:40:32
重点是mkcert函数点击(此处)折叠或打开#include #include #include #include #include #include #.........【阅读全文】