Ejemplo n.º 1
0
        public GdbBacktrace(GdbSession session, long threadId, int count, ResultData firstFrame)
        {
            this.session  = session;
            fcount        = count;
            this.threadId = threadId;

            if (firstFrame != null)
            {
                this.firstFrame = CreateFrame(firstFrame);
            }
        }
Ejemplo n.º 2
0
 public GdbDissassemblyBuffer(GdbSession session, long addr) : base(addr)
 {
     this.session = session;
 }
Ejemplo n.º 3
0
        public DebuggerSession CreateSession()
        {
            GdbSession ds = new GdbSession("gdb");

            return(ds);
        }