mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-26 16:04:34 +00:00
Save/load crash information.
This commit is contained in:
parent
619fba41ab
commit
99b7a39c52
@ -7,7 +7,7 @@ namespace Version
|
|||||||
{
|
{
|
||||||
enum { Major = 0 };
|
enum { Major = 0 };
|
||||||
enum { Minor = 3 };
|
enum { Minor = 3 };
|
||||||
enum { Patch = 203 };
|
enum { Patch = 204 };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -287,6 +287,11 @@ Worker::Worker( FileRead& f, EventType::Type eventMask )
|
|||||||
m_hostInfo = std::string( tmp, tmp+sz );
|
m_hostInfo = std::string( tmp, tmp+sz );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if( fileVer >= FileVersion( 0, 3, 204 ) )
|
||||||
|
{
|
||||||
|
f.Read( &m_data.m_crashEvent, sizeof( m_data.m_crashEvent ) );
|
||||||
|
}
|
||||||
|
|
||||||
if( fileVer >= FileVersion( 0, 3, 202 ) )
|
if( fileVer >= FileVersion( 0, 3, 202 ) )
|
||||||
{
|
{
|
||||||
f.Read( sz );
|
f.Read( sz );
|
||||||
@ -2977,6 +2982,8 @@ void Worker::Write( FileWrite& f )
|
|||||||
f.Write( &sz, sizeof( sz ) );
|
f.Write( &sz, sizeof( sz ) );
|
||||||
f.Write( m_hostInfo.c_str(), sz );
|
f.Write( m_hostInfo.c_str(), sz );
|
||||||
|
|
||||||
|
f.Write( &m_data.m_crashEvent, sizeof( m_data.m_crashEvent ) );
|
||||||
|
|
||||||
sz = m_data.frames.Data().size();
|
sz = m_data.frames.Data().size();
|
||||||
f.Write( &sz, sizeof( sz ) );
|
f.Write( &sz, sizeof( sz ) );
|
||||||
for( auto& fd : m_data.frames.Data() )
|
for( auto& fd : m_data.frames.Data() )
|
||||||
|
Loading…
Reference in New Issue
Block a user