php 函数在vm执行流程

Posted by 夏泽民

https://www.cnblogs.com/driftcloudy/p/3296525.html https://www.cnblogs.com/driftcloudy/p/5400994.html



LD_PRELOAD和dlopen选项RTLD_DEEPBIND之间的优先级

Posted by 夏泽民

RTLD_DEEPBIND的优先级更高,在符号名发生冲突时,LD_PRELOAD的全局符号介入对于使用RTLD_DEEPBIND标志位dlopen开的动态连接库无效。 发现背景: 在使用《在应用程序中替换Linux中Glibc的malloc的四种方法》一文中第3个方法接管程序内存时发现已接管内存总量比top命令看到的虚拟内存值小很多。于是查看/proc/[pid]/smaps查看虚拟内存页的使用情况(pmap命令也可以)。在进程中使用gdb查看各个内存页的首地址,转换为内存管理结构体发现,有很多内存没有接管,导致统计结果要比top少。 挑选了一个未接管的内存,通过 gdb 的dump binary memory 的命令存为磁盘文件,在通过UltralEdit等二进制编辑器大致浏览一下,根据内存包含的文本判断该内存是由某个动态链接库申请和使用的。而该链接库恰恰是通过dlopendlopen(strLibName,RTLD_NOW|RTLD_LOCAL|RTLD_DEEPBIND)方式打开的。 RTLD_DEEPBIND (since glibc 2.3.4) Place the lookup scope of the symbols in this library ahead of the global scope. This means that a self-contained library will use its own symbols in preference to global symbols with the same name contained in libraries that have already been loaded. This flag is not specified in POSIX.1-2001.



linux 下调试coredump文件

Posted by 夏泽民

1、coredump简介



SATA硬盘和SSD硬盘性能测试对比

Posted by 夏泽民

测试工具: fio



OOM原理分析

Posted by 夏泽民

OOM全称是Out Of Memory,指的是kernel因分配不出内存而报的错误,同时会触发kernel调用OOM killer杀进程来解除这种状况。



Search

Popular posts

Anything in here will be replaced on browsers that support the canvas element

Recent posts

This blog is maintained by 夏泽民

Get in touch with me at 465474307@qq.com

Subscribe to our mailing list

* indicates required