mirror of
https://github.com/corda/corda.git
synced 2025-01-04 04:04:27 +00:00
fix build and runtime bugs introduced in last commit
This commit is contained in:
parent
e7c8fb645a
commit
1207989f72
@ -10,6 +10,7 @@ public class Method<T> extends AccessibleObject implements Member {
|
|||||||
private byte[] spec;
|
private byte[] spec;
|
||||||
private Class<T> class_;
|
private Class<T> class_;
|
||||||
private Object code;
|
private Object code;
|
||||||
|
private Object compiled;
|
||||||
|
|
||||||
private Method() { }
|
private Method() { }
|
||||||
|
|
||||||
|
2
makefile
2
makefile
@ -24,7 +24,7 @@ else
|
|||||||
ld-library-path = LD_LIBRARY_PATH
|
ld-library-path = LD_LIBRARY_PATH
|
||||||
endif
|
endif
|
||||||
|
|
||||||
process=interpret
|
process = interpret
|
||||||
|
|
||||||
mode = debug
|
mode = debug
|
||||||
|
|
||||||
|
@ -3018,6 +3018,12 @@ class MyProcessor: public Processor {
|
|||||||
return new (s->allocate(sizeof(Thread))) Thread(m, javaThread, parent);
|
return new (s->allocate(sizeof(Thread))) Thread(m, javaThread, parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virtual object
|
||||||
|
methodStub(vm::Thread*)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
virtual void
|
virtual void
|
||||||
visitObjects(vm::Thread* vmt, Heap::Visitor* v)
|
visitObjects(vm::Thread* vmt, Heap::Visitor* v)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user