We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
libraries/state_history/include/eosio/state_history/log.hpp state_history_log The internal thread is not used.
libraries/state_history/include/eosio/state_history/log.hpp
state_history_log
std::thread thr; std::atomic<bool> write_thread_has_exception = false; std::exception_ptr eptr; boost::asio::io_context ctx; boost::asio::io_context::strand work_strand{ctx}; boost::asio::executor_work_guard<boost::asio::io_context::executor_type> work_guard = boost::asio::make_work_guard(ctx); std::recursive_mutex mx;
The thr and ctx is not used for anything after creation. The mx is not protecting anything that needs protection.
thr
ctx
mx
The text was updated successfully, but these errors were encountered:
Merge pull request AntelopeIO#593 from eosnetworkfoundation/simplify_…
685d5f1
…deep_mind_log [3.2] simplify deep_mine_tests by replacing complicated merge and match with straight-forward file copying and comparison
Closing based off above references
Sorry, something went wrong.
No branches or pull requests
libraries/state_history/include/eosio/state_history/log.hpp
state_history_log
The internal thread is not used.The
thr
andctx
is not used for anything after creation. Themx
is not protecting anything that needs protection.The text was updated successfully, but these errors were encountered: