public WireProtocol.Commands.Debugging_Thread_Stack.Reply GetThreadStack(uint pid)
        {
            WireProtocol.Commands.Debugging_Thread_Stack cmd = new WireProtocol.Commands.Debugging_Thread_Stack();

            cmd.m_pid = pid;

            WireProtocol.IncomingMessage reply = SyncMessage(WireProtocol.Commands.c_Debugging_Thread_Stack, 0, cmd);
            if (reply != null)
            {
                return reply.Payload as WireProtocol.Commands.Debugging_Thread_Stack.Reply;
            }

            return null;
        }
Example #2
0
        public Commands.Debugging_Thread_Stack.Reply GetThreadStack( uint pid )
        {
            Commands.Debugging_Thread_Stack cmd = new Commands.Debugging_Thread_Stack( );

            cmd.m_pid = pid;

            IncomingMessage reply = SyncMessage( Commands.c_Debugging_Thread_Stack, 0, cmd );
            if( reply != null )
            {
                return reply.Payload as Commands.Debugging_Thread_Stack.Reply;
            }

            return null;
        }