jvm.h (_Jv_SetGCFreeSpaceDivisor): Declare new function.

* include/jvm.h (_Jv_SetGCFreeSpaceDivisor): Declare new function.
	* boehm.cc (_Jv_SetGCFreeSpaceDivisor): Define it.

From-SVN: r129560
This commit is contained in:
David Daney 2007-10-22 21:24:35 +00:00 committed by David Daney
parent 0c71b4541a
commit 61c9bbb782
3 changed files with 15 additions and 0 deletions

View file

@ -412,6 +412,10 @@ void _Jv_SetInitialHeapSize (const char *arg);
_Jv_GCSetMaximumHeapSize. */
void _Jv_SetMaximumHeapSize (const char *arg);
/* External interface for setting the GC_free_space_divisor. Calls
GC_set_free_space_divisor and returns the old value. */
int _Jv_SetGCFreeSpaceDivisor (int div);
/* Free the method cache, if one was allocated. This is only called
during thread deregistration. */
void _Jv_FreeMethodCache ();