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 crash when unloading the library #108

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

Conversation

suokko
Copy link
Contributor

@suokko suokko commented Jun 7, 2020

I noticed dds was causing crash in exit because libEnd was called after memory::~memory(). Static destructor are executed in unspecified order. To avoid order issues I decided to make changes which moves all memory cleanup code to automatically generated destructors using stl and std::unique_ptr memory management.

I noticed there is pull request #90. But it seems to have issues still so I decided to provide alternative attempt at fixing same issue.

Static destructor order is unsepcified which leads to Memory::~Memory()
running before libEnd(). Moving cleanup code to automatically generated
destructors using stl and std::unique_ptr memory managemt avoids issues
with unspecified static destructor call order.

Signed-off-by: Pauli <[email protected]>
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