mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Proper spelling of dbghelp.
This commit is contained in:
parent
cc3cbfe6f2
commit
c39b7af4b3
@ -258,7 +258,7 @@ This is a very OS-specific task. It is split into two parts: getting the call st
|
|||||||
|
|
||||||
On some platforms a bit of setup work is required. This is done in the \texttt{InitCallstack()} function.
|
On some platforms a bit of setup work is required. This is done in the \texttt{InitCallstack()} function.
|
||||||
|
|
||||||
On Windows, tracy will attempt to preload symbols at \texttt{InitCallstack()} time. It does this for device drivers and process modules. As this process can be slow when a lot of pdbs are involved, you can set the \texttt{TRACY\_NO\_DBHELP\_INIT\_LOAD} environment variable to "1" to disable this behavior and rely on-demand symbol loading.
|
On Windows, tracy will attempt to preload symbols at \texttt{InitCallstack()} time. It does this for device drivers and process modules. As this process can be slow when a lot of pdbs are involved, you can set the \texttt{TRACY\_NO\_DBGHELP\_INIT\_LOAD} environment variable to "1" to disable this behavior and rely on-demand symbol loading.
|
||||||
|
|
||||||
\subsubsection{Getting the frames}
|
\subsubsection{Getting the frames}
|
||||||
|
|
||||||
|
@ -1788,7 +1788,7 @@ void DbgHelpUnlock() { ReleaseMutex(dbgHelpLock); }
|
|||||||
}
|
}
|
||||||
\end{lstlisting}
|
\end{lstlisting}
|
||||||
|
|
||||||
At initilization time, tracy will attempt to preload symbols for device drivers and process modules. As this process can be slow when a lot of pdbs are involved, you can set the \texttt{TRACY\_NO\_DBHELP\_INIT\_LOAD} environment variable to "1" to disable this behavior and rely on-demand symbol loading.
|
At initilization time, tracy will attempt to preload symbols for device drivers and process modules. As this process can be slow when a lot of pdbs are involved, you can set the \texttt{TRACY\_NO\_DBGHELP\_INIT\_LOAD} environment variable to "1" to disable this behavior and rely on-demand symbol loading.
|
||||||
|
|
||||||
\paragraph{Disabling resolution of inline frames}
|
\paragraph{Disabling resolution of inline frames}
|
||||||
|
|
||||||
|
@ -361,11 +361,11 @@ void InitCallstack()
|
|||||||
DBGHELP_LOCK;
|
DBGHELP_LOCK;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// use TRACY_NO_DBHELP_INIT_LOAD=1 to disable preloading of driver
|
// use TRACY_NO_DBGHELP_INIT_LOAD=1 to disable preloading of driver
|
||||||
// and process module symbol loading at startup time - they will be loaded on demand later
|
// and process module symbol loading at startup time - they will be loaded on demand later
|
||||||
// Sometimes this process can take a very long time and prevent resolving callstack frames
|
// Sometimes this process can take a very long time and prevent resolving callstack frames
|
||||||
// symbols during that time.
|
// symbols during that time.
|
||||||
const char* noInitLoadEnv = GetEnvVar( "TRACY_NO_DBHELP_INIT_LOAD" );
|
const char* noInitLoadEnv = GetEnvVar( "TRACY_NO_DBGHELP_INIT_LOAD" );
|
||||||
const bool initTimeModuleLoad = !( noInitLoadEnv && noInitLoadEnv[0] == '1' );
|
const bool initTimeModuleLoad = !( noInitLoadEnv && noInitLoadEnv[0] == '1' );
|
||||||
if ( !initTimeModuleLoad )
|
if ( !initTimeModuleLoad )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user