IDebugThread2::GetLogicalThread
Applies to: Visual Studio Visual Studio for Mac
Note
This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Debug engines do not implement this method.
Syntax
HRESULT GetLogicalThread(
IDebugStackFrame2* pStackFrame,
IDebugLogicalThread2** ppLogicalThread
);
int GetLogicalThread(
IDebugStackFrame2 pStackFrame,
out IDebugLogicalThread2 ppLogicalThread
);
Parameters
pStackFrame
[in] An IDebugStackFrame2 object that represents the stack frame.
ppLogicalThread
[out] Returns an IDebugLogicalThread2
interface that represents the associated logical thread. A debug engine implementation should set this to a null value.
Return Value
Debug engine implementations always return E_NOTIMPL
.