id summary reporter owner description type status milestone component version severity resolution keywords cc 11610 boost::executors::serial_executor_cont stack overflow during destruction asafa3@… Anthony Williams "I'm getting stack overflow in destructor of serial_executor_cont under Visual Studio 2015 RTM. {{{ #include #include #define BOOST_THREAD_PROVIDES_FUTURE #define BOOST_THREAD_PROVIDES_EXECUTORS #define BOOST_THREAD_PROVIDES_FUTURE_CONTINUATION #include #include using namespace std; int main() { boost::loop_executor ex; thread t([&ex]() { ex.loop(); }); { boost::serial_executor_cont serial(ex); for (size_t i = 0; i < 100000; i++) serial.submit([] {}); serial.close(); } ex.close(); t.join(); cout << ""end"" << endl; } }}}" Bugs closed To Be Determined thread Boost 1.58.0 Problem duplicate stack overflow executors