Tagged Questions

0
votes
3answers
137 views

java.util.ConcurrentModificationException in Non Multithreaded Program,

Hey SO Guru's im having one heck of a job with this code public void kill(double GrowthRate, int Death) { int before = population.size(); for (PopulationMember p : population) { …
4
votes
3answers
162 views

java.util.concurrent vs. Boost Threads library

Hi, How does the Boost Thread libraries compare against the java.util.concurrent libraries? Performance is critical and so I would prefer to stay with C++ (although Java is a lot faster these days). …
2
votes
3answers
474 views

Lock a file while writing it on the disk

I have two independant threads F1 and F2 (to be precise, two instances of java.util.concurrent.FutureTask) that are running in parallel. F1 do some processing, and then copy the result in a XML file. …