The Meson Build System
http://mesonbuild.com/
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;
|
||
|
}
|