免费注册 查看新帖 |

Chinaunix

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

如何封装pthread_create? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-04-06 17:15 |只看该作者 |倒序浏览
比如有个函数原形 void* myfunc(void* param);

要求写一个函数 RunThreads,可以创建(pthread_create)线程myfunc,大致为:
void RunThreads(...Func)
{
     ......
     pthread_create(, NULL,...Func,NULL);
     ......
}

调用方式:
RunThreads(...myfunc);//启动线程

论坛徽章:
0
2 [报告]
发表于 2004-04-06 17:29 |只看该作者

如何封装pthread_create?

我顶。。。。。。

论坛徽章:
0
3 [报告]
发表于 2004-04-06 17:35 |只看该作者

如何封装pthread_create?

我再顶。。。。。。

论坛徽章:
0
4 [报告]
发表于 2004-04-06 17:51 |只看该作者

如何封装pthread_create?

我狂顶。。。。。。。。。。。。。。。

论坛徽章:
0
5 [报告]
发表于 2004-04-06 20:21 |只看该作者

如何封装pthread_create?


  1. void * MyFunc(void *param)
  2. {
  3.     ......
  4. }

  5. void RunThreads(void* (*pFunc)(void *param))
  6. {
  7.     ......
  8.     pthread_create(, NULL,...pFunc,NULL);
  9.     ......
  10. }

  11. int main(void)
  12. {
  13.     void *(*pFunc)(void *param) = NULL;

  14.     pFunc = MyFunc;
  15.     RunThread(pFunc);

  16.     return(0);
  17. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP