Eric

Results 5 comments of Eric

Failed Reason: version_generator.py need python2, I have python3.8. modify the version_generator.py print -> print( ) then make, generate .o files, the global variables can be defined...

It exists on any OS. Because the default named_mutex is spin_wait, you can view the source code, there is macro to change internal implementation. You can change it to posix...

Changed the posix mutex implementation to be robust #66

#if defined(BOOST_INTERPROCESS_USE_POSIX_SEMAPHORES) typedef ipcdetail::posix_named_mutex internal_mutex_type; #undef BOOST_INTERPROCESS_USE_POSIX_SEMAPHORES #elif defined(BOOST_INTERPROCESS_USE_WINDOWS) typedef ipcdetail::windows_named_mutex internal_mutex_type; #undef BOOST_INTERPROCESS_USE_WINDOWS #else typedef ipcdetail::shm_named_mutex internal_mutex_type; #endif But define BOOST_INTERPROCESS_USE_POSIX_SEMAPHORES, boost using the posix semaphore, deadlock are also...

I have a similar crash problem in rbtree_best_fit Boost 1_65_1 x64 with large size mapped_region, when clear or erase. I don't know if it's a compiling optimization problem. I use...