mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +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 Class<T> class_;
|
||||
private Object code;
|
||||
private Object compiled;
|
||||
|
||||
private Method() { }
|
||||
|
||||
|
2
makefile
2
makefile
@ -24,7 +24,7 @@ else
|
||||
ld-library-path = LD_LIBRARY_PATH
|
||||
endif
|
||||
|
||||
process=interpret
|
||||
process = interpret
|
||||
|
||||
mode = debug
|
||||
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user