• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# CorDebug.CorThread类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中Microsoft.Samples.Debugging.CorDebug.CorThread的典型用法代码示例。如果您正苦于以下问题:C# CorThread类的具体用法?C# CorThread怎么用?C# CorThread使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



CorThread类属于Microsoft.Samples.Debugging.CorDebug命名空间,在下文中一共展示了CorThread类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: HasQueuedCallbacks

 /**
  * Are there managed callbacks queued up for the requested thread?
  */
 public bool HasQueuedCallbacks (CorThread managedThread)
 {
     int queued = 0;
     m_controller.HasQueuedCallbacks( (managedThread==null)?null:managedThread.GetInterface(),
                                      out queued
                                      );
     return !(queued == 0);
 }
开发者ID:FreeBSD-DotNet,项目名称:monodevelop,代码行数:11,代码来源:Controller.cs


示例2: CorBacktrace

		public CorBacktrace (CorThread thread, CorDebuggerSession session): base (session.ObjectAdapter)
		{
			this.session = session;
			this.thread = thread;
			threadId = thread.Id;
			frames = new List<CorFrame> (GetFrames (thread));
			evalTimestamp = CorDebuggerSession.EvaluationTimestamp;
		}
开发者ID:fedorw,项目名称:monodevelop,代码行数:8,代码来源:CorDebuggerBacktrace.cs


示例3: GetFrames

		internal static IEnumerable<CorFrame> GetFrames (CorThread thread)
		{
			foreach (CorChain chain in thread.Chains) {
                if (!chain.IsManaged)
                    continue;
                foreach (CorFrame frame in chain.Frames)
                    yield return frame;
			}
		}
开发者ID:fedorw,项目名称:monodevelop,代码行数:9,代码来源:CorDebuggerBacktrace.cs


示例4: Step

 public void Step(CorThread thread)
 {
     _activeThread = thread;
     var stepper = createStepper();
     var mod = _activeThread.ActiveFrame.Function.Module;
     if (hasSymbolReader(mod))
         stepIn(mod, stepper);
     else
         stepOut(stepper);
 }
开发者ID:acken,项目名称:ClrSequencer,代码行数:10,代码来源:Stepper.cs


示例5: MoveNext

 //
 // IEnumerator interface
 //
 public bool MoveNext()
 {
     ICorDebugThread[] a = new ICorDebugThread[1];
     uint c = 0;
     int r = m_enum.Next ((uint) a.Length, a, out c);
     if (r==0 && c==1) // S_OK && we got 1 new element
         m_th = new CorThread (a[0]);
     else
         m_th = null;
     return m_th != null;
 }
开发者ID:uQr,项目名称:Visual-NHibernate,代码行数:14,代码来源:ThreadEnumerator.cs


示例6: ThreadInfo

        //constructors
        /// <summary>
        /// Initialze the StackTrace Class and create all the FrameInfo objects
        /// </summary>
        /// <param name="proc">The thread to get the stack trace of</param>
        internal ThreadInfo(CorThread thread, ProcessInfo procInfo)
        {
            if (thread == null)
            {
                throw new ArgumentNullException("thread");
            }
            if (procInfo == null)
            {
                throw new ArgumentNullException("procInfo");
            }

            this.thread = thread;
            metaImportHash = new Dictionary<string, CorMetadataImport>();
            frameStack = new List<FrameInfo>();
            threadId = thread.Id;
            processInfo = procInfo;
            //get the general thread information object
            generalThreadInfo = procInfo.GeneralThreads[threadId];
        }
开发者ID:artisticcheese,项目名称:MSE,代码行数:24,代码来源:ThreadInfo.cs


示例7: Stopped

 public void Stopped(DllDebugger debugger, CorThread thread)
 {
     Console.ForegroundColor = ConsoleColor.Black;
     Console.BackgroundColor = ConsoleColor.Green;
     Console.Out.Write("Thread [{0}]", thread.Id);
     Console.BackgroundColor = ConsoleColor.Black;
     Console.ForegroundColor = ConsoleColor.Red;
     Console.Out.Write(" (ct=Continue, stov=Step Over, stin=Step In, trc=Stack Trace, det=Detach): ");
     Console.ForegroundColor = ConsoleColor.Green;
     var line = Console.In.ReadLine();
     var transcribed = line.ToLower();
     if (transcribed.Contains("ct")) return;
     if (transcribed.Contains("stov")) debugger.StepOver(thread);
     else if (transcribed.Contains("stin")) debugger.StepInto(thread);
     else if (transcribed.Contains("trc")) debugger.ShowStackTrace(thread);
     else if (transcribed.Contains("locals")) debugger.ShowLocals(thread);
     else if (transcribed.Contains("br")) SetBreakpoint(transcribed, debugger);
     else if (transcribed.Contains("det")) debugger.Detach();
     else Stopped(debugger, thread);
 }
开发者ID:asengupta,项目名称:DllDbg,代码行数:20,代码来源:TextMessageSubscriber.cs


示例8: CorStepCompleteEventArgs

 public CorStepCompleteEventArgs(CorAppDomain appDomain, CorThread thread,
                                  CorStepper stepper, CorDebugStepReason stepReason)
     : base(appDomain, thread)
 {
     m_stepper = stepper;
     m_stepReason = stepReason;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:7,代码来源:Debugger.cs


示例9: CorBreakpointEventArgs

 public CorBreakpointEventArgs(CorAppDomain appDomain,
                                CorThread thread,
                                CorBreakpoint managedBreakpoint)
     : base(appDomain, thread)
 {
     m_break = managedBreakpoint;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:7,代码来源:Debugger.cs


示例10: CorThreadEventArgs

 public CorThreadEventArgs(CorAppDomain appDomain, CorThread thread)
     : base(appDomain != null ? appDomain : thread.AppDomain)
 {
     Thread = thread;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:5,代码来源:Debugger.cs


示例11: CorExceptionUnwind2EventArgs

 public CorExceptionUnwind2EventArgs(CorAppDomain appDomain, CorThread thread,
                                     CorDebugExceptionUnwindCallbackType eventType,
                                     int flags,
                                     ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_eventType = eventType;
     m_flags = flags;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:9,代码来源:Debugger.cs


示例12: CorFunctionRemapCompleteEventArgs

 public CorFunctionRemapCompleteEventArgs(CorAppDomain appDomain,
                                    CorThread thread,
                                    CorFunction managedFunction
                                    )
     : base(appDomain, thread)
 {
     m_managedFunction = managedFunction;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:8,代码来源:Debugger.cs


示例13: CorFunctionRemapOpportunityEventArgs

 public CorFunctionRemapOpportunityEventArgs(CorAppDomain appDomain,
                                    CorThread thread,
                                    CorFunction oldFunction,
                                    CorFunction newFunction,
                                    int oldILoffset
                                    )
     : base(appDomain, thread)
 {
     m_oldFunction = oldFunction;
     m_newFunction = newFunction;
     m_oldILoffset = oldILoffset;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:12,代码来源:Debugger.cs


示例14: CorExceptionEventArgs

 public CorExceptionEventArgs(CorAppDomain appDomain,
                               CorThread thread,
                               bool unhandled,
                               ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_unhandled = unhandled;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:8,代码来源:Debugger.cs


示例15: CorBreakpointSetErrorEventArgs

 public CorBreakpointSetErrorEventArgs(CorAppDomain appDomain,
                                 CorThread thread,
                                 CorBreakpoint breakpoint,
                                 int errorCode)
     : base(appDomain, thread)
 {
     m_breakpoint = breakpoint;
     m_errorCode = errorCode;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:9,代码来源:Debugger.cs


示例16: CorEvalEventArgs

 public CorEvalEventArgs(CorAppDomain appDomain, CorThread thread,
                          CorEval eval)
     : base(appDomain, thread)
 {
     m_eval = eval;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:6,代码来源:Debugger.cs


示例17: CorLogMessageEventArgs

 public CorLogMessageEventArgs(CorAppDomain appDomain, CorThread thread,
                                int level, string logSwitchName, string message,
                                ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_level = level;
     m_logSwitchName = logSwitchName;
     m_message = message;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:9,代码来源:Debugger.cs


示例18: CorException2EventArgs

 public CorException2EventArgs(CorAppDomain appDomain,
                               CorThread thread,
                               CorFrame frame,
                               int offset,
                               CorDebugExceptionCallbackType eventType,
                               int flags,
                               ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_frame = frame;
     m_offset = offset;
     m_eventType = eventType;
     m_flags = flags;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:14,代码来源:Debugger.cs


示例19: CorLogSwitchEventArgs

 public CorLogSwitchEventArgs(CorAppDomain appDomain, CorThread thread,
                               int level, int reason, string logSwitchName, string parentName,
                               ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_level = level;
     m_reason = reason;
     m_logSwitchName = logSwitchName;
     m_parentName = parentName;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:10,代码来源:Debugger.cs


示例20: CorMDAEventArgs

 // Thread may be null.
 public CorMDAEventArgs(CorMDA mda, CorThread thread, CorProcess proc)
     : base(proc)
 {
     m_mda = mda;
     Thread = thread;
     //m_proc = proc;
 }
开发者ID:fedorw,项目名称:monodevelop,代码行数:8,代码来源:Debugger.cs



注:本文中的Microsoft.Samples.Debugging.CorDebug.CorThread类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Scripting.CodeContext类代码示例发布时间:2022-05-26
下一篇:
C# CorDebug.CorAppDomain类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap