-
-
Notifications
You must be signed in to change notification settings - Fork 701
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
Fibers and mutexes #937
Comments
Support for mutexes with fibers is probably not implemented now. |
Is this a problem in the front-end (i.e. server)? |
I got similar issue initially but that seems to be caused by incorrect or missing Fiber Enter instrumentation. p.s. although in your case it may be mismatched Zone start/end? |
In our code we have fiber mutexes, that work just like thread mutexes. |
Thank you very much, for the reply. I'm pretty sure, I do something with entering and leaving the coroutines wrong, but I don't know how to do it right. The best results I do get with the following code in my thread function:
With "best results" I just mean, that the zones look correct in the server. But it still stops after some loops. |
Hi, first of all many thanks for creating such a marvelous product.
I am trying to use Tracy in a system that has fibers and fiber mutexes.
I notice that fibers show up in the capture - but not mutexes.
If I disable fibers and use threads, then mutexes show up.
Is there an assumption that mutexes are thread based?
The text was updated successfully, but these errors were encountered: