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 unloading of C plugins #1533

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion panda/python/core/pandare/panda.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,9 @@ def run(self):
self.running.set()
self.libpanda.panda_run() # Give control to panda
self.running.clear() # Back from panda's execution (due to shutdown or monitor quit)
self.unload_plugins() # Unload pyplugins and C plugins
self.unload_plugins() # Unload pyplugins
self.delete_callbacks() # Unload any registered callbacks
self.libpanda.panda_unload_plugins() # Unload C plugins
self.plugins = plugin_list(self)
# Write PANDALOG, if any
#self.libpanda.panda_cleanup_record()
Expand Down
Loading