Check-in [168d86b82b]
Overview
Comment:Renamed leakcheck tool

Added documentation for leakcheck tool

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 168d86b82b7dc348720a65c2e968ea7ae3094bd8
User & Date: rkeene on 2010-05-15 00:48:38
Other Links: manifest | tags
Context
2010-05-15
00:50
Further documentation for the leakcheck tool check-in: a87e5cb815 user: rkeene tags: trunk
00:48
Renamed leakcheck tool

Added documentation for leakcheck tool check-in: 168d86b82b user: rkeene tags: trunk

00:39
Updated to censor PIN in debugging output check-in: 0233c7b5fe user: rkeene tags: trunk
Changes

Added leakcheck/README.txt version [ca130de962].

































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
This script is intended to be used to parse the "debugging" output produced on
stderr when CACKey is compiled with debugging flags enabled.

Sample usage:
	$ ./test 2> cackey-debug.log
	Testing libcackey...
	PKCS#11 Client Version: 2.30, Library Version 0.0
	...
	Testing libcackey... DONE. Status = 0
	$ ./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)

Name change from leakcheck/check-malloc-free.sh to leakcheck/leakcheck.