DkmProcess.IsStopped 方法

定义

此方法允许组件确定调度程序是否将进程视为已停止。 不需要从需要停止目标进程的接口方法中调用此方法,但在运行模式下可能会很有帮助。

public:
 bool IsStopped();
public:
 bool IsStopped();
bool IsStopped();
public bool IsStopped ();
member this.IsStopped : unit -> bool
Public Function IsStopped () As Boolean

返回

Boolean

弄如果进程被视为已停止,则返回 true。 这会在调试器发送停止事件之后,在请求线程上返回 true (例如:断点命中) 到 IDE,并且在该进程恢复之前。 如果暂停事件 (ex:模块负载) 或停止事件,则它将在事件线程上返回 true, (ex:正在处理) 命中断点。

适用于