コード例 #1
0
        public RuntimeValue GetThread(uint pid)
        {
            WireProtocol.Commands.Debugging_Thread_Get cmd = new WireProtocol.Commands.Debugging_Thread_Get();

            cmd.m_pid = pid;

            return GetRuntimeValue(WireProtocol.Commands.c_Debugging_Thread_Get, cmd);            
        }
コード例 #2
0
ファイル: Engine.cs プロジェクト: aura1213/netmf-interpreter
        public RuntimeValue GetThread( uint pid )
        {
            Commands.Debugging_Thread_Get cmd = new Commands.Debugging_Thread_Get( );

            cmd.m_pid = pid;

            return GetRuntimeValue( Commands.c_Debugging_Thread_Get, cmd );
        }