You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
384 B

#include <boost/filesystem.hpp>
#include <boost/thread.hpp>
namespace {
boost::mutex m1;
boost::recursive_mutex m2;
void threadmain()
{
boost::lock_guard<boost::mutex> lock1(m1);
boost::lock_guard<boost::recursive_mutex> lock2(m2);
boost::filesystem::path p(boost::filesystem::current_path());
}
}
int main()
{
boost::thread foo(threadmain);
foo.join();
return 0;
}