2
votes
1answer
358 views

Boost::mutex performance vs pthread_mutex_t

I was using pthread_mutex_ts beforehand. The code sometimes got stuck. I had a couple of lines of code scattered across functions that I wrapped... pthread_mutex_lock(&map_mutex);// Line 1 ...
0
votes
1answer
273 views

Boost named_mutex unable to be shared across processes that are created by different users

I have a problem in sharing a boost named mutex across processes, which are created by different users. The first process is created by service, which logon as LocalSystem. The second process is ...
2
votes
2answers
305 views

vector copying and multi-threading : how to ensure multi-read even if occasional writes may happen?

Pseudocode: Function1_vector_copy () { vectora = vectorb; } Function2_vector_search() { find k in vectora; } The program is multi-threaded. While many threads may search , vector copying is done ...