Package uk.co.cwspencer.gdb.messages

Examples of uk.co.cwspencer.gdb.messages.GdbThread


            }
        }

        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);
        }
View Full Code Here

TOP

Related Classes of uk.co.cwspencer.gdb.messages.GdbThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.