mirror of
https://github.com/boostorg/thread.git
synced 2026-01-22 17:52:18 +00:00
20 lines
385 B
C++
20 lines
385 B
C++
#include <boost/thread/thread.hpp>
|
|
#include <iostream>
|
|
|
|
int count = 0;
|
|
boost::mutex mutex;
|
|
|
|
void increment_count()
|
|
{
|
|
boost::mutex::scoped_lock lock(mutex);
|
|
std::cout << "count = " << ++count << std::endl;
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
boost::thread_group threads;
|
|
for (int i = 0; i < 10; ++i)
|
|
threads.create_thread(&increment_count);
|
|
threads.join_all();
|
|
}
|