Tagged Questions
2
votes
2answers
295 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 ...