C++
codethisworld
这个作者很懒,什么都没留下…
展开
-
c++ 文章集锦
1 make、cmake、make install、configure各干了啥原创 2016-09-23 16:31:04 · 358 阅读 · 0 评论 -
gcc cas无锁编程和性能测试
[TOC] cas无锁编程介绍 gcc文档的5.44 Built-in functions for atomic memory access介绍了一组原子操作,其中有一组compare_and_set函数可以用来实现无锁编程: bool __sync_bool_compare_and_swap (type *ptr, type oldval type newval, ...) type ...原创 2018-07-13 00:26:22 · 1798 阅读 · 0 评论 -
getopt: linux 下c/c++命令行参数解析
getopt getopt #include <unistd.h> int getopt(int argc, char * const argv[], const char *optstring); extern char *optarg; extern int optind, opterr, optopt; #include <g...翻译 2018-08-05 12:33:06 · 1847 阅读 · 0 评论