The Meson Build System
http://mesonbuild.com/
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.
19 lines
293 B
19 lines
293 B
5 years ago
|
#define _XOPEN_SOURCE 500
|
||
|
|
||
|
#include<boost/thread.hpp>
|
||
|
|
||
|
boost::recursive_mutex m;
|
||
|
|
||
|
struct callable {
|
||
|
void operator()() {
|
||
|
boost::recursive_mutex::scoped_lock l(m);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
callable x;
|
||
|
boost::thread thr(x);
|
||
|
thr.join();
|
||
|
return 0;
|
||
|
}
|