Skip to content

Instantly share code, notes, and snippets.

@JakubOboza
Created December 12, 2008 19:22
Show Gist options
  • Save JakubOboza/35236 to your computer and use it in GitHub Desktop.
Save JakubOboza/35236 to your computer and use it in GitHub Desktop.
#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();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment