Subject: CVS commit: pkgsrc/devel/boehm-gc
To: None <pkgsrc-changes@NetBSD.org>
From: Thomas Klausner <wiz@netbsd.org>
List: pkgsrc-changes
Date: 07/07/2007 15:21:08
Module Name:	pkgsrc
Committed By:	wiz
Date:		Sat Jul  7 15:21:08 UTC 2007

Modified Files:
	pkgsrc/devel/boehm-gc: Makefile PLIST distinfo
	pkgsrc/devel/boehm-gc/patches: patch-aa patch-ab patch-ad patch-af
Removed Files:
	pkgsrc/devel/boehm-gc/patches: patch-ae

Log Message:
Update to 7.0:

Changes relative to 6.8 include, in no particular order:

 - Change C code to require at least C89.  Clean up code in various
   other respects.
 - Win64 port.
 - Always count how much live data there is in the heap.  Add more
   robust heap expansion heuristic which relies on this.
 - Remove old-style Solaris threads support and some other obsolete
   platform support.
 - Restructure mark code, hopefully resulting in some performance
   improvements.
 - Change the GC code to traffic mostly in either bytes or allocation
   granules, not words, internally.
 - Provide for fast inline allocation that requires less frequent client
   recompilations.  (Needs more testing.)
 - Removed SILENT configuration macro and PRINTSTATS and GATHERSTATS
   macros.  Control is now via GC_PRINT_STATS and GC_PRINT_VERBOSE_STATS
   encironment variables.
 - Thread local allocation is now performed without needing to call
   special allocation functions.  The configuration macro
   THREAD_LOCAL_ALLOC
   continues to determine whether this is supported.
 - Thread local allocation is supported on more platforms.
 - Win32 threads code was rewritten and is hopefully more sane.
 - Allocation routines now decide whether to lock dynamically, based on
   whether a second thread has been created.
 - Mostly untested support for a compiler write barrier.
 - Use libatomic_ops for atomic operations.
 - Limited support for malloc redirection with Linux threads (& NPTL ).
 - Various bug fixes and some new platform support.


To generate a diff of this commit:
cvs rdiff -r1.58 -r1.59 pkgsrc/devel/boehm-gc/Makefile
cvs rdiff -r1.8 -r1.9 pkgsrc/devel/boehm-gc/PLIST
cvs rdiff -r1.32 -r1.33 pkgsrc/devel/boehm-gc/distinfo
cvs rdiff -r1.18 -r1.19 pkgsrc/devel/boehm-gc/patches/patch-aa
cvs rdiff -r1.16 -r1.17 pkgsrc/devel/boehm-gc/patches/patch-ab
cvs rdiff -r1.23 -r1.24 pkgsrc/devel/boehm-gc/patches/patch-ad
cvs rdiff -r1.7 -r0 pkgsrc/devel/boehm-gc/patches/patch-ae
cvs rdiff -r1.10 -r1.11 pkgsrc/devel/boehm-gc/patches/patch-af

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.