}
}
if (m_stack == null) {
// No thread object is available so we have to construct our own
GdbThread thread = new GdbThread();
thread.id = stopEvent.threadId;
thread.frame = stopEvent.frame;
m_stack = new GdbExecutionStack(gdb, thread);
stacks.add(0, m_stack);
}