Skip to content

Commit

Permalink
Fix unloading of C plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
lluchs committed Sep 12, 2024
1 parent 2888c39 commit 8935d04
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 8935d04

Please sign in to comment.