Use more appropriate name.

This commit is contained in:
Bartosz Taudul 2020-02-26 23:02:34 +01:00
parent 4511a4de8c
commit a35795f793
2 changed files with 2 additions and 2 deletions

View File

@ -2450,7 +2450,7 @@ Stack frame location may be displayed in the following number of ways, depending
\item \emph{Source code} -- displays source file and line number associated with the frame. \item \emph{Source code} -- displays source file and line number associated with the frame.
\item \emph{Return address} -- shows return address, which may be used to pinpoint the exact instruction in the disassembly. \item \emph{Return address} -- shows return address, which may be used to pinpoint the exact instruction in the disassembly.
\item \emph{Symbol address} -- displays begin address of the function containing the frame address. \item \emph{Symbol address} -- displays begin address of the function containing the frame address.
\item \emph{Function} -- opens source code at the beginning of the function containing selected frame. \item \emph{Entry point} -- opens source code at the beginning of the function containing selected frame.
\end{itemize} \end{itemize}
In some cases it may be not possible to properly decode stack frame address. Such frames will be presented with a dimmed '\texttt{[ntdll.dll]}' name of the image containing the frame address, or simply '\texttt{[unknown]}' if even this information cannot be retrieved. '\texttt{[kernel]}' is used to indicate unknown stack frames within the operating system internal routines. In some cases it may be not possible to properly decode stack frame address. Such frames will be presented with a dimmed '\texttt{[ntdll.dll]}' name of the image containing the frame address, or simply '\texttt{[unknown]}' if even this information cannot be retrieved. '\texttt{[kernel]}' is used to indicate unknown stack frames within the operating system internal routines.

View File

@ -11133,7 +11133,7 @@ void View::DrawCallstackWindow()
ImGui::SameLine(); ImGui::SameLine();
ImGui::RadioButton( "Symbol address", &m_showCallstackFrameAddress, 2 ); ImGui::RadioButton( "Symbol address", &m_showCallstackFrameAddress, 2 );
ImGui::SameLine(); ImGui::SameLine();
ImGui::RadioButton( "Function", &m_showCallstackFrameAddress, 3 ); ImGui::RadioButton( "Entry point", &m_showCallstackFrameAddress, 3 );
ImGui::PopStyleVar(); ImGui::PopStyleVar();
auto& cs = m_worker.GetCallstack( m_callstackInfoWindow ); auto& cs = m_worker.GetCallstack( m_callstackInfoWindow );