-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
examples/minimal-mdns/client.cpp does shutdown weirdly #8917
Labels
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
bzbarsky-apple
added a commit
to bzbarsky-apple/connectedhomeip
that referenced
this issue
Mar 29, 2023
Shutting down the platform manager while the event loop is not fully shut down (which is the case when StopEventLoopTask is called from inside the event loop itself) is not supported. Fixes project-chip#8917
bzbarsky-apple
added a commit
that referenced
this issue
Apr 4, 2023
Shutting down the platform manager while the event loop is not fully shut down (which is the case when StopEventLoopTask is called from inside the event loop itself) is not supported. Fixes #8917
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
MemoryShutdown
as needed.PlatformMgr().Shutdown()
needs to come afterRunEventLoop
returns, not from inside an event on the event loop.Proposed Solution
Fix the above.
The text was updated successfully, but these errors were encountered: