実行中のタスク内で tbb::concurrent_hash_map を使用しようとしていますが、マップの erase() を呼び出すとタスクが無限にロックされるという問題が発生しています。以下のスニペットで何が間違っている可能性がありますか?
#include <iostream>
#include <boost/date_time.hpp>
#include <tbb/concurrent_hash_map.h>
#include <tbb/task_group.h>
#include <tbb/task_scheduler_init.h>
class BusyTask
{
public:
void operator()() {
typedef tbb::concurrent_hash_map<unsigned int, int> MyMap;
MyMap m;
MyMap::accessor a;
m.insert(a, 1);
m.erase(1); // The task will lock up at this point
}
};
int main(int argc, char* argv[])
{
std::cout << "Started" << std::endl;
BusyTask busyTask1;
tbb::task_group taskGroup;
taskGroup.run(busyTask1);
taskGroup.wait();
std::cout << "Finished" << std::endl;
return 0;
}
TBB v4.0.5 と GCC 4.7 でテストしています