mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
support classloading from jar files compiled into the executable
This commit is contained in:
@ -2870,7 +2870,10 @@ class MyProcessor: public Processor {
|
||||
virtual vm::Thread*
|
||||
makeThread(Machine* m, object javaThread, vm::Thread* parent)
|
||||
{
|
||||
return new (s->allocate(sizeof(Thread))) Thread(m, javaThread, parent);
|
||||
Thread* t = new (s->allocate(sizeof(Thread)))
|
||||
Thread(m, javaThread, parent);
|
||||
t->init();
|
||||
return t;
|
||||
}
|
||||
|
||||
virtual void*
|
||||
|
Reference in New Issue
Block a user