📄 ndebugger-processes.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
// <version>$Revision: 930 $</version>
// </file>
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using Debugger.Wrappers.CorDebug;
namespace Debugger
{
public partial class NDebugger
{
List<Process> processCollection = new List<Process>();
// Is set as long as the process count is zero
ManualResetEvent noProcessesHandle = new ManualResetEvent(true);
public event EventHandler<ProcessEventArgs> ProcessStarted;
public event EventHandler<ProcessEventArgs> ProcessExited;
public IList<Process> Processes {
get {
return processCollection.AsReadOnly();
}
}
internal Process GetProcess(ICorDebugProcess corProcess)
{
foreach (Process process in Processes) {
if (process.CorProcess == corProcess) {
return process;
}
}
throw new DebuggerException("Process is not in collection");
}
internal void AddProcess(Process process)
{
processCollection.Add(process);
OnProcessStarted(process);
noProcessesHandle.Reset();
}
internal void RemoveProcess(Process process)
{
processCollection.Remove(process);
OnProcessExited(process);
// noProcessesHandle is set in NDebugger.TerminateDebugger
}
protected virtual void OnProcessStarted(Process process)
{
if (ProcessStarted != null) {
ProcessStarted(this, new ProcessEventArgs(process));
}
}
protected virtual void OnProcessExited(Process process)
{
if (ProcessExited != null) {
ProcessExited(this, new ProcessEventArgs(process));
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -