Commit 726abf5d by Bryce McKinlay Committed by Bryce McKinlay

jvm.h (_Jv_BuildGCDescr): Declare unconditionally.

	* include/jvm.h (_Jv_BuildGCDescr): Declare unconditionally.
	* nogc.cc (_Jv_BuildGCDescr): Define unconditionally.

From-SVN: r48169
parent 6510f4c9
2001-12-19 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* include/jvm.h (_Jv_BuildGCDescr): Declare unconditionally.
* nogc.cc (_Jv_BuildGCDescr): Define unconditionally.
2001-12-18 Tom Tromey <tromey@redhat.com>
* java/text/CollationElementIterator.java (secondaryOrder): Cast
......
......@@ -177,9 +177,7 @@ void _Jv_InitGC (void);
/* Register a finalizer. */
void _Jv_RegisterFinalizer (void *object, _Jv_FinalizerFunc *method);
/* Compute the GC descriptor for a class */
#ifdef INTERPRETER
void * _Jv_BuildGCDescr(jclass);
#endif
/* Allocate some unscanned, unmoveable memory. Return NULL if out of
memory. */
......
......@@ -19,13 +19,11 @@ details. */
// Total amount of memory allocated.
static long total = 0;
#ifdef INTERPRETER
void *
_Jv_BuildGCDescr(jclass klass)
{
return 0;
}
#endif
void *
_Jv_AllocObj (jsize size, jclass klass)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment