pthread-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3976970
  • 博文数量: 536
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4825
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(536)

文章存档

2024年(3)

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(252)

2006年(73)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: c/c

2006-12-14 14:21:08

void pthread_exit(void *retval)
int pthread_join(pthread_t th, void **thread_return)

pthread_join()的调用者将挂起并等待th线程终止,retval是pthread_exit()调用者线程(线程id为th)的返回值,
如果thread_return不为null,则*thread_return=retval。
需要注意的是一个线程仅允许唯一的一个线程使用 pthread_join()等待它的终止,并且被等待的线程应该处于可join状态,即非detached状态

------------------------
for (i = 0; i < 10; i )
{
  if (pthread_create((pthread_t *)&pthr[i].id, null,
            (void *)thr_function, (void *)pthr[i]))
  {
    fprintf(stderr, "create pthread error: %s\n", strerror(errno));
    goto err_flg;
  }
}

for (i = 0; i < 10; i )
{
  if (pthr[i].id != 0)
    pthread_join(pthr[i].id, null);
}
阅读(5323) | 评论(0) | 转发(0) |
0

上一篇:ora-01480

下一篇:oracle rownum的实践

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图