fix build and runtime bugs introduced in last commit

This commit is contained in:
Joel Dice 2007-09-26 08:43:40 -06:00
parent e7c8fb645a
commit 1207989f72
3 changed files with 8 additions and 1 deletions

View File

@ -10,6 +10,7 @@ public class Method<T> extends AccessibleObject implements Member {
private byte[] spec;
private Class<T> class_;
private Object code;
private Object compiled;
private Method() { }

View File

@ -24,7 +24,7 @@ else
ld-library-path = LD_LIBRARY_PATH
endif
process=interpret
process = interpret
mode = debug

View File

@ -3018,6 +3018,12 @@ class MyProcessor: public Processor {
return new (s->allocate(sizeof(Thread))) Thread(m, javaThread, parent);
}
virtual object
methodStub(vm::Thread*)
{
return 0;
}
virtual void
visitObjects(vm::Thread* vmt, Heap::Visitor* v)
{