undefined

无锁队列的实现
https://coolshell.cn/articles/8239.html

https://km.woa.com/group/492/articles/show/152881?kmref=search&from_page=1&no=2

https://km.woa.com/group/24938/articles/show/479345?kmref=search&from_page=1&no=7

notify_one 的差劲性能
https://stackoverflow.com/questions/48936591/is-the-performance-of-notify-one-really-this-bad

微信高性能RPC框架:Summer
https://km.woa.com/group/24938/articles/show/235793

查看更多

undefined

man 手册:https://man7.org/linux/man-pages/man8/ld.so.8.html

LD_PRELOAD 指定多个库文件

1
2
3
4
5
6
7
8
9
10
11
12
# 使用冒号在文件之间做分隔。man 手册提到也支持空格,但写到 shell 中会出错,不要使用
LD_PRELOAD=path1:path2
LD_PRELOAD="path1 path2" // 不建议使用

man 手册:
The items of the list can be separated by spaces or
colons, and there is no support for escaping either
separator. The objects are searched for using the rules
given under DESCRIPTION. Objects are searched for and
added to the link map in the left-to-right order specified
in the list.
不支持转义分隔符。以列表中指定的从左到右的顺序搜索对象并将其添加到链接映射中

LD_LIBRARY_PATH

查看更多