なんらかの理由で動作したくないC++のコードをいじっていたので、この場合に絞り込みました。
#include <thread>
#include <atomic>
#include <chrono>
#include <mutex>
#include <iostream>
using namespace std;
void test()
{
timed_mutex m;
m.lock();
std::cout << "Can i have the lock? " << m.try_lock() << std::endl;
std::cout << "in test(), should block for 10 seconds" << std::endl;
bool got_lock = m.try_lock_for(std::chrono::seconds(10));
std::cout << "Now i've blocked, got the lock: " << got_lock << std::endl;
m.unlock();
}
int main()
{
thread t = thread(&test);
t.join();
return EXIT_SUCCESS;
}
try_lock
問題は、 falseを返しても、test()がまったくブロックしないことです。私が見落としているものがありますか、これはgccのバグですか、それとも次にどこに行って何が問題なのかを調べる必要がありますか?アドバイスと助けてくれてありがとう!
私はこの小さなプログラムを次のようにコンパイルしました:g++ -pthread -std=c++11 threads.cpp -o threads
そしてそれが助けになるなら、これはgccと私のOSのバージョンです:
g++ --version
g++ (GCC) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
uname -a
Linux *computername* 3.6.11-1-ARCH #1 SMP PREEMPT Tue Dec 18 08:57:15 CET 2012 x86_64 GNU/Linux