I'm wondering the best way to start a pthread that is a member of a C++ class? My own approach follows as an answer...
|
I usually use a static member function of the class, and use a pointer to the class as the void * parameter. That function can then either perform thread processing, or call another non-static member function with the class reference. That function can then reference all class members without awkward syntax. |
|||
|
|
This can be simply done by using the boost library, like this:
Notes:
|
|||||||||
|
|
You have to bootstrap it using the void* parameter: class A
{
static void* StaticThreadProc(void *arg)
{
return reinterpret_cast<A*>(arg)->ThreadProc();
}
void* ThreadProc(void)
{
// do stuff
}
};
...
pthread_t theThread;
pthread_create(&theThread, NULL, &A::StaticThreadProc, this);
|
||||
|
|
|
I have used three of the methods outlined above. When I first used threading in c++ I used static member functions, then friend functions and finally the BOOST libraries. Currently I prefer BOOST. Over the past several years I've become quite the BOOST bigot. BOOST is to C++ as CPAN is to Perl. :) |
|||
|
|
|
So, I usually declare a friend function and have that call a public method that does what I want the thread to accomplish. Is this the best design practice, or should I be doing something else? Thx |
|||
|
|
|
The boost library provides a copy mechanism, which helps to transfer object information to the new thread. In the other boost example boost::bind will be copied with a pointer, which is also just copied. So you'll have to take care for the validity of your object to prevent a dangling pointer. If you implement the operator() and provide a copy constructor instead and pass the object directly, you don't have to care about it. A much nicer solution, which prevents a lot of trouble:
The other boost example creates the thread object on the heap, although there is no sense to do it. |
|||||||||||||
|