mirror of
https://github.com/wolfpld/tracy
synced 2025-01-15 20:08:00 +00:00
Compare commits
6 Commits
e35d02186d
...
5cada49780
Author | SHA1 | Date | |
---|---|---|---|
|
5cada49780 | ||
|
592644ae43 | ||
|
9b7f759347 | ||
|
e6398250ca | ||
|
450013bc27 | ||
|
da29ec975b |
8
NEWS
8
NEWS
@ -9,6 +9,14 @@ a mistake.
|
||||
v0.x.x (xxxx-xx-xx)
|
||||
-------------------
|
||||
|
||||
- Updated Zen 3 and added Tiger Lake microarchitectural data.
|
||||
- Manually disconnecting from the server will no longer display erroneous
|
||||
warning message.
|
||||
|
||||
|
||||
v0.7.7 (2021-04-01)
|
||||
-------------------
|
||||
|
||||
- Linux crash handler will now also catch SIGABRT.
|
||||
- Fixed invalid name assignment to source files discovered client-side.
|
||||
- Added ability to check if a zone is active (which may be used to avoid
|
||||
|
File diff suppressed because one or more lines are too long
@ -48,9 +48,10 @@ static constexpr MicroArchUx s_uArchUx[] = {
|
||||
{ "Cannon Lake", "Core i3-8121U", "CNL" },
|
||||
{ "Ice Lake", "Core i5-1035G1", "ICL" },
|
||||
{ "Cascade Lake", "Core i9-10980XE", "CLX" },
|
||||
{ "Tiger Lake", "Core i7-1165G7", "TGL" },
|
||||
{ "AMD Zen+", "Ryzen 5 2600", "ZEN+" },
|
||||
{ "AMD Zen 2", "Ryzen 7 3700X", "ZEN2" },
|
||||
{ "AMD Zen 3", "Ryzen 9 5950X", "ZEN3" },
|
||||
{ "AMD Zen 3", "Ryzen 5 5600X", "ZEN3" },
|
||||
};
|
||||
|
||||
static constexpr const char* s_regNameX86[] = {
|
||||
|
@ -7,7 +7,7 @@ namespace Version
|
||||
{
|
||||
enum { Major = 0 };
|
||||
enum { Minor = 7 };
|
||||
enum { Patch = 6 };
|
||||
enum { Patch = 7 };
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1133,7 +1133,8 @@ bool View::DrawImpl()
|
||||
if( m_reactToLostConnection && !m_worker.IsConnected() )
|
||||
{
|
||||
m_reactToLostConnection = false;
|
||||
if( m_worker.GetSendInFlight() > 0 )
|
||||
const auto inFlight = m_worker.GetSendInFlight();
|
||||
if( inFlight > 1 || ( inFlight == 1 && !m_worker.WasDisconnectIssued() ) )
|
||||
{
|
||||
ImGui::OpenPopup( "Connection lost!" );
|
||||
}
|
||||
|
@ -569,6 +569,7 @@ public:
|
||||
bool IsBackgroundDone() const { return m_backgroundDone.load( std::memory_order_relaxed ); }
|
||||
void Shutdown() { m_shutdown.store( true, std::memory_order_relaxed ); }
|
||||
void Disconnect();
|
||||
bool WasDisconnectIssued() const { return m_disconnect; }
|
||||
|
||||
void Write( FileWrite& f );
|
||||
int GetTraceVersion() const { return m_traceVersion; }
|
||||
|
Loading…
Reference in New Issue
Block a user