Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Hang on shutdown with enabled system tracing #1016

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

6yry6e
Copy link

@6yry6e 6yry6e commented Mar 28, 2025

The issue occur when the client wants to shutdown profiling but transfer all data to the server before exiting.
The client code looks like it:
tracy::GetProfiler().RequestShutdown();
while (!tracy::GetProfiler().HasShutdonwFinished())
{
yield...
}

If the client doesn't send any zones/data to the queue, it works fine. But when system tracing is enabled it constantly fills queue with new data, the queue may never become empty, so we never reach exit conditions and the app hangs.

It look like solution to that problem is shutting down system tracing before sending remaining data to the server.
Another possible fix is to check ShouldExit in the systrace callback, but that's appear to me as a waste of cycles.

@6yry6e 6yry6e marked this pull request as draft March 29, 2025 14:35
@6yry6e 6yry6e closed this Mar 29, 2025
@6yry6e 6yry6e reopened this Mar 29, 2025
@6yry6e 6yry6e marked this pull request as ready for review March 29, 2025 19:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant