Created
December 6, 2010 12:30
-
-
Save kumagi/730219 to your computer and use it in GitHub Desktop.
thread local storage sample
This file contains 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.hpp> | |
#include <boost/thread/tss.hpp> | |
#include <boost/bind.hpp> | |
#include <iostream> | |
class del{ | |
public: | |
int dat; | |
del(int i):dat(i){} | |
~del(){std::cout << "deleted " << dat<< std::endl;} | |
}; | |
boost::thread_specific_ptr<del> tls; | |
void thread(int num){ | |
tls.reset(new del(num)); | |
} | |
int main(void){ | |
tls.reset(new del(0)); | |
{ | |
boost::thread a1(boost::bind(&thread, 1)); | |
boost::thread a2(boost::bind(&thread, 2)); | |
boost::thread a3(boost::bind(&thread, 3)); | |
a1.join();a2.join();a3.join(); | |
} | |
std::cout << "end" << std::endl; | |
} | |
/* | |
---outputs-- | |
deleted 3 | |
deleted 1 | |
deleted 2 | |
end | |
deleted 0 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment