mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Don't filter out kernel frames on win32.
This commit is contained in:
parent
891e1ac280
commit
6d03b18d1c
@ -203,7 +203,7 @@ void WINAPI EventRecordCallback( PEVENT_RECORD record )
|
||||
if( hdr.EventDescriptor.Opcode == 32 )
|
||||
{
|
||||
const auto sw = (const StackWalkEvent*)record->UserData;
|
||||
if( sw->stackProcess == s_pid && ( sw->stack[0] & 0x8000000000000000 ) == 0 )
|
||||
if( sw->stackProcess == s_pid )
|
||||
{
|
||||
const uint64_t sz = ( record->UserDataLength - 16 ) / 8;
|
||||
if( sz > 0 )
|
||||
|
Loading…
Reference in New Issue
Block a user