免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1944 | 回复: 4
打印 上一主题 下一主题

[函数] 如何将myobj.thread_function(NULL)传递给pthread_create函数? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-07-15 10:56 |只看该作者 |倒序浏览
现在我有一个类

  1. class test
  2. {
  3. public:
  4.     test(){}
  5.     ~test(){}
  6.     void thread_function(void*){}
  7. };

  8. int main()
  9. {
  10.     test myobj;
  11.    
  12.     pthread_t thrd;

  13.     pthread_attr_t attr;
  14.     pthread_attr_init(&attr);
  15.     pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);

  16. /**************************************************************/
  17. /* 如何将myobj.thread_function(NULL)传递给pthread_create函数?**/
  18. /* 我试了&myobj.thread_function, 不行!我好像想不出什么别的办法*/
  19. /* 各位大侠帮帮忙,谢谢!!!                                 */

  20.     pthread_create(&thrd, &attr, /*????????*/, NULL);
  21. /**************************************************************/

  22.     pthread_attr_destroy(&attr);

  23. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2005-07-15 13:39 |只看该作者

如何将myobj.thread_function(NULL)传递给pthread_create函数?

pthread_create 的声明是:

#include <pthread.h>;;

int pthread_create (pthread_t *thread, const pthread_attr_t *attr, void
*(*start_routine) (void *), void *arg) ;

论坛徽章:
0
3 [报告]
发表于 2005-07-15 14:08 |只看该作者

如何将myobj.thread_function(NULL)传递给pthread_create函数?

#include <iostream>;
#include <pthread.h>;

class test
{
public:
      test(){}
      ~test(){}
      static void *thread_function(void*){}
};

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, &test::thread_function, NULL);
       
      pthread_attr_destroy(&attr);
      return 0;
}

论坛徽章:
0
4 [报告]
发表于 2005-07-15 14:46 |只看该作者

如何将myobj.thread_function(NULL)传递给pthread_create函数?

谢谢! 但是这样传递好像跟对象myobj没有关系了,我的意思是把myobj.thread_function 传给pthread_create函数

论坛徽章:
0
5 [报告]
发表于 2005-07-15 17:23 |只看该作者

如何将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.

  1. #include <pthread.h>;

  2. class test
  3. {
  4. public:
  5.     test(){}
  6.     ~test(){}
  7.     void thread_function(){}

  8. };

  9. template<class T, void(T::*mem_fn)()>;
  10. void* thunk(void* p)
  11. {
  12.      (static_cast<T*>;(p)->;*mem_fn)();
  13.      return 0;

  14. }
  15. int main()
  16. {
  17.     test myobj;
  18.     pthread_t thrd;
  19.     pthread_attr_t attr;
  20.     pthread_attr_init(&attr);
  21.     pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);

  22.     pthread_create(&thrd, &attr, thunk<test, &test::thread_function>;,&myobj);

  23.     pthread_attr_destroy(&attr);

  24. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP