mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
Update to version 0.1.3.
PR: 64967 Submitted by: Rong-En Fan <rafan@infor.org>
This commit is contained in:
parent
32e544a6ee
commit
c29240c782
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=105752
@ -6,9 +6,9 @@
|
||||
#
|
||||
|
||||
PORTNAME= memcheck
|
||||
PORTVERSION= 0.1.1
|
||||
PORTVERSION= 0.1.3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.sound.net/~hald/projects/memcheck/
|
||||
MASTER_SITES= http://hald.dnsalias.net/projects/memcheck/
|
||||
|
||||
MAINTAINER= demon@FreeBSD.org
|
||||
COMMENT= Memory Allocation Checker
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (memcheck-0.1.1.tar.gz) = 42223a9dba7e44b2090e975810e3b072
|
||||
SIZE (memcheck-0.1.1.tar.gz) = 186463
|
||||
MD5 (memcheck-0.1.3.tar.gz) = 5f7b409b2db851b3573cc06b67df38c9
|
||||
SIZE (memcheck-0.1.3.tar.gz) = 228519
|
||||
|
@ -4,13 +4,16 @@ This is Memory Allocation Checker package. Main features:
|
||||
* Log double free or realloc of already freed pointer.
|
||||
* Log memory not freed on exit.
|
||||
* Check for pointer underrun on free/realloc.
|
||||
* Set level of logging.
|
||||
* Optionally reverse behaviour of overrun and underrun.
|
||||
* Optionally "churn" reallocations. Always return a different pointer.
|
||||
* Optionally log pointer overruns instead of faulting.
|
||||
* Optionally return freed memory to system. (May hurt checking for freed
|
||||
pointer usage).
|
||||
* Optionally log "large" allocations.
|
||||
* Optionally run out-of-memory after a specified amount of memory has
|
||||
been used.
|
||||
* Very small performance impact.
|
||||
* Large memory footprint impact.
|
||||
* Includes a validation test suite to test correctness of libmemcheck.
|
||||
|
||||
WWW: http://www.sound.net/~hald/projects/memcheck/
|
||||
WWW: http://hald.dnsalias.net/projects/memcheck/
|
||||
|
@ -1,5 +1,7 @@
|
||||
include/arm-ucontext.h
|
||||
include/memcheck.h
|
||||
lib/libmemcheck.so.1
|
||||
lib/libmemcheck.so
|
||||
lib/libmemcheck.la
|
||||
include/x86_64-ucontext.h
|
||||
lib/libmemcheck.a
|
||||
lib/libmemcheck.la
|
||||
lib/libmemcheck.so
|
||||
lib/libmemcheck.so.1
|
||||
|
Loading…
Reference in New Issue
Block a user