- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- memory leak analysis tool
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2004 02:21 AM
06-14-2004 02:21 AM
memory leak analysis tool
I suspect one of my third party library has memory leak. gdb "info leaks" shows there is a leak.
Is this gdb method is enough to conclude that a library has error. Does any other opensource tool which provide memory leak information on source code as well as from a library.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2004 02:32 AM
06-14-2004 02:32 AM
Re: memory leak analysis tool
I use a simple menthid as follows.
UNIX95= ps -C "Program" -o "vsz,comm,pid,ruser"
Run this through cron every 15/30 mins and check if it the VSZ goes on increasing or not. If it is, you can say that it has memory leaks.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2004 02:43 AM
06-14-2004 02:43 AM
Re: memory leak analysis tool
I have checked memory leaks on source code using "memwatch" tool, but it fails to provide memory leak from library. Since "memwatch" is under GPL license I guess some tool will be available to detect leak in library.
Thanks,
Shaick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2004 02:45 AM
06-14-2004 02:45 AM
Re: memory leak analysis tool
gdb is most widely used tool to detect memory leak, you can also try with wdb
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2004 06:41 AM
06-14-2004 06:41 AM
Re: memory leak analysis tool
UNIX because I majored in cryptology...