- 论坛徽章:
- 0
|
如何将myobj.thread_function(NULL)传递给pthread_create函数?
A C++ Guru solved the problem:
http://groups-beta.google.com/group/comp.lang.c++/browse_thread/thread/ca461689187c5b40/ebd5d718a7fc882a#ebd5d718a7fc882a
Maxim Yegorushkin 写到:
See, pthread_create() takes a callback function pointer and a user void*
pointer which can be used for passing a pointer to an object. All you have
to do is to use little thunk as a thread start routine that directs the
control flow into a member function of the object.
- #include <pthread.h>;
- class test
- {
- public:
- test(){}
- ~test(){}
- void thread_function(){}
- };
- template<class T, void(T::*mem_fn)()>;
- void* thunk(void* p)
- {
- (static_cast<T*>;(p)->;*mem_fn)();
- return 0;
- }
- int main()
- {
- test myobj;
- pthread_t thrd;
- pthread_attr_t attr;
- pthread_attr_init(&attr);
- pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
- pthread_create(&thrd, &attr, thunk<test, &test::thread_function>;,&myobj);
- pthread_attr_destroy(&attr);
- }
复制代码 |
|