Esempio 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);
            }
        }
 public GdbDissassemblyBuffer(GdbSession session, long addr) : base(addr)
 {
     this.session = session;
 }
Esempio n. 3
0
        public DebuggerSession CreateSession()
        {
            GdbSession ds = new GdbSession("gdb");

            return(ds);
        }