Created
December 12, 2008 19:22
-
-
Save JakubOboza/35236 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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