免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: homegirl
打印 上一主题 下一主题

请教线程问题 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2007-09-12 09:07 |只看该作者
我试过,pthread_join的第二个参数,获得的是0,而我的线程处理函数返回的是-1050

论坛徽章:
0
12 [报告]
发表于 2007-09-12 09:48 |只看该作者
帖代码吧

论坛徽章:
0
13 [报告]
发表于 2007-09-12 10:45 |只看该作者
:wink: ,如果要用pthread_join的第二个参数获得线程函数的返回值,不能使用return,而应该使用pthread_exit。。。

====以上请注意

论坛徽章:
0
14 [报告]
发表于 2007-09-12 11:11 |只看该作者
NAME
       pthread_create - thread creation

SYNOPSIS
       #include <pthread.h>

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

DESCRIPTION
       The  pthread_create()  function  shall  create a new thread, with attributes specified by attr,
       within a process. If attr is NULL, the default attributes shall  be  used.  If  the  attributes
       specified  by attr are modified later, the thread's attributes shall not be affected. Upon suc-
       cessful completion, pthread_create() shall store the ID of the created thread in  the  location
       referenced by thread.

       The  thread is created executing start_routine with arg as its sole argument. If the start_rou-
       tine returns, the effect shall be as if there was an implicit call to pthread_exit() using  the
       return  value  of  start_routine  as  the exit status.
Note that the thread in which main() was
       originally invoked differs from this. When it returns from main(), the effect shall  be  as  if
       there was an implicit call to exit() using the return value of main() as the exit status.

论坛徽章:
0
15 [报告]
发表于 2007-09-12 11:14 |只看该作者

  1. #include <pthread.h>
  2. #include <stdio.h>
  3. #define NUM_THREADS 1

  4. void *thread(void *threadid)
  5. {
  6.     int ret = rand();
  7.     printf("thread return %d!\n", ret);
  8.     return ((void *)ret);
  9. }

  10. int main (int argc, char *argv[])
  11. {
  12.    pthread_t threads[NUM_THREADS];
  13.    int rc, t;
  14.    srand(time(NULL));
  15.    for(t=0; t<NUM_THREADS; t++){
  16.       printf("In main: creating thread %d\n", t);
  17.       rc = pthread_create(&threads[t], NULL, thread, (void *)t);
  18.       if (rc){
  19.          printf("ERROR; return code from pthread_create() is %d\n", rc);
  20.          exit(-1);
  21.       }
  22.    }
  23.     pthread_join(threads[0], &rc);
  24.     printf("rc=%d\n", rc);
  25.    pthread_exit(NULL);
  26. }
复制代码

改成return也可以获得thread的返回值。


我的系统是:  cat /proc/versions
Linux version 2.6.16.1 (prc@sw-alg-server) (gcc version 4.1.1 20060525 (Red Hat 4.1.1-1)) #1 SMP Thu Mar 22 09:22:29 CST 2007

在其它系统上的运行结果不知
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP