2016年4月26日

循环缓冲区使用&运算

摘要: 常见的循环buffer更新索引方法 idx = idx % bufferlen 优化 bufferlen必须是2的n次 idx = idx & (bufferlen 1) 阅读全文

posted @ 2016-04-26 16:09 zlyang 阅读(205) 评论(0) 推荐(0) 编辑

摘要

摘要: 什么是线程 "Threads" ) are : "the smallest unit of processing that can be scheduled by an operating system". Each OS has its own implementations of threads 阅读全文

posted @ 2016-04-26 16:07 zlyang 阅读(130) 评论(0) 推荐(0) 编辑

导航