Differences From Artifact [ca130de962]:
- File
leakcheck/README.txt
— part of check-in
[168d86b82b]
at
2010-05-15 00:48:38
on branch trunk
— Renamed leakcheck tool
Added documentation for leakcheck tool (user: rkeene, size: 531) [annotate] [blame] [check-ins using]
To Artifact [6c2aea9788]:
- File leakcheck/README.txt — part of check-in [a87e5cb815] at 2010-05-15 00:50:45 on branch trunk — Further documentation for the leakcheck tool (user: rkeene, size: 669) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
10 11 12 13 14 15 16 | $ ./leakcheck/leakcheck cackey-debug.log Unfreed memory 0x804d010: cackey_mutex_create():2017: MALLOC() = 0x804d010 (Note that the leak from cackey_mutex_create() is normal -- there's no safe way to clean up that mutex) | > > > | 10 11 12 13 14 15 16 17 18 19 | $ ./leakcheck/leakcheck cackey-debug.log Unfreed memory 0x804d010: cackey_mutex_create():2017: MALLOC() = 0x804d010 (Note that the leak from cackey_mutex_create() is normal -- there's no safe way to clean up that mutex) This functionality exists to check for leaks in libcackey independently of dependent libraries, and the application hosting the library. |