Skip to content

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 <suokkos@gmail.com>
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