use of org.jikesrvm.mm.mminterface.CollectorThread in project JikesRVM by JikesRVM.
the class Collection method spawnCollectorContext.
/**
**************************************************************************
*
* Class variables
*/
/**
* {@inheritDoc}
*/
@Override
@Interruptible
public void spawnCollectorContext(CollectorContext context) {
byte[] stack = MemoryManager.newStack(StackFrameLayout.getStackSizeCollector());
CollectorThread t = new CollectorThread(stack, context);
t.start();
}
Aggregations