ICorProfilerCallback::RuntimeThreadSuspended Method

Notifies the profiler that the specified thread has been suspended or is about to be suspended.

HRESULT RuntimeThreadSuspended(
    [in] ThreadID threadId);

Parameters

  • threadId
    [in] The ID of the thread that has been suspended.

Remarks

The RuntimeThreadSuspended notification can occur any time between the ICorProfilerCallback::RuntimeSuspendStarted and the associated ICorProfilerCallback::RuntimeResumeStarted callbacks. Notifications that occur between ICorProfilerCallback::RuntimeSuspendFinished and RuntimeResumeStarted are for threads that had been running in unmanaged code and were suspended upon entry to the runtime.

Generally, this callback occurs just after a thread is suspended. However, if the currently executing thread (the thread that called this callback) is the one that is being suspended, this callback will occur just before the thread is suspended.

Requirements

Platforms: See .NET Framework System Requirements.

Header: CorProf.idl

Library: CorGuids.lib

.NET Framework Versions: 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0

See Also

Reference

ICorProfilerCallback Interface

ICorProfilerCallback::RuntimeThreadResumed Method