-
Notifications
You must be signed in to change notification settings - Fork 793
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
Memory leak with 0.16 Equihash mining #641
Comments
Calling If the old call is scheduled first, then everything is fine, since the old call will return and clean up its frame before the new call is scheduled. However, since the load is purely computational, if the new call is scheduled first [1], then it will never yield. In this case, there is a memory leak since the old call's data is never cleaned up. But the [1] This case cannot actually occur because, once it is started, the old call will run to completion! I.e. the |
With equihash, |
Superseded by #770 |
…ls-nesting Ability to create nesting proposals with cli_wallet steemit#641
When the mining threads are being blocked at this line:
and a new block arrives,
witness_plugin::start_mining
will be called again, this line will fail silently and leave some memory leaked.The text was updated successfully, but these errors were encountered: