Windows stacktrace中行末的数字是多少

Windows stacktrace中行末的数字是多少,windows,stack-trace,Windows,Stack Trace,堆栈跟踪中行末尾的“+”后面的数字代表什么 Function Source ntdll!KiFastSystemCallRet ntdll!ZwRemoveIoCompletion+c kernel32!GetQueuedCompletionStatus+29 w3tp!THREAD_POOL_DATA::ThreadPoolThread+33 w3tp!THREAD_POOL_DATA::ThreadPoolThread+24 w3tp!THREA

堆栈跟踪中行末尾的“+”后面的数字代表什么

Function   Source 
ntdll!KiFastSystemCallRet    
ntdll!ZwRemoveIoCompletion+c    
kernel32!GetQueuedCompletionStatus+29    
w3tp!THREAD_POOL_DATA::ThreadPoolThread+33    
w3tp!THREAD_POOL_DATA::ThreadPoolThread+24    
w3tp!THREAD_MANAGER::ThreadManagerThread+39    
kernel32!BaseThreadStart+34 
给你 +c +29 +33 +24
+函数内部的39+34偏移量。在第3帧上,返回地址是:内核的地址32!GetQueuedCompletionStatus符号+29字节。

函数内部的偏移量。在第3帧上,返回地址是:内核的地址32!GetQueuedCompletionStatus符号+29字节。

它们是从指定子例程开始的偏移量,以十六进制表示。比如说

kernel32!BaseThreadStart+34

在内核32模块的例程BaseThreadStart中输入52(34十六进制)字节。

它们是从指定子例程开始的偏移量(十六进制)。比如说

kernel32!BaseThreadStart+34
在内核32模块的例程BaseThreadStart中输入52(34十六进制)字节