Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,VmRSS 正在增加,但 VmSize 没有增加。这是内存泄漏的症状吗?
我用 Valgrind 工具检查了我的应用程序,但它没有检测到内存泄漏。
RSS 代表Resident Set Size。这是您的进程正在积极使用的内存量,并映射到实际 RAM(未换出到磁盘)。
如果 RSS 上升,但您的总虚拟映像大小稳定,那么您不会分配更多内存,而是更积极地使用已分配的内存。这本身不是问题,它只是一个迹象,表明您的进程正在做很多事情,并且已经分配了越来越多的内存。