Use same kernel module name as on Linux.

This commit is contained in:
Bartosz Taudul 2021-06-15 02:31:51 +02:00
parent 5b642cad01
commit bdb11f6e48
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -223,7 +223,7 @@ const char* DecodeCallstackPtrFast( uint64_t ptr )
static const char* GetModuleName( uint64_t addr )
{
if( ( addr & 0x8000000000000000 ) != 0 ) return "[kernel]";
if( ( addr >> 63 ) != 0 ) return "<kernel>";
#ifndef __CYGWIN__
for( auto& v : *s_modCache )