免费注册 查看新帖 |

Chinaunix

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

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

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-09-11 10:25 |只看该作者 |倒序浏览
我定义了线程处理函数,处理socket通讯
static int s_socket_api_socket_deal_thread(Socket_Api_Communicate_Info *pstCommunicateInfo);
return socket通讯过程中的异常或正常返回值。
再创建一个线程:
nRet = pthread_create(&nThreadId, NULL, (int *)s_socket_api_socket_deal_thread, pstCommunicateInfo);
但是,我怎么获得这个线程处理函数的返回值,也就是怎么获得socket通讯的结果返回值?
pthread_create只有第四个参数,用于输入,而没有输出参数

论坛徽章:
0
2 [报告]
发表于 2007-09-11 10:46 |只看该作者
在线成里面pthread_exit,再用pthread_join函数可以获得线成的终止状态??可以不

论坛徽章:
0
3 [报告]
发表于 2007-09-11 10:59 |只看该作者
pthread_join的第二参数获得的是pthread_create的返回值,而不是s_socket_api_socket_deal_thread的返回值

论坛徽章:
0
4 [报告]
发表于 2007-09-11 11:12 |只看该作者
在主线程的堆上malloc一个结构,然后在对等线程里给该结构赋值。

论坛徽章:
0
5 [报告]
发表于 2007-09-11 11:16 |只看该作者
就是不希望使用静态变量或者malloc太多东西,
而且多线程下,如果线程达到太多的时候,这些静态的和malloc出来的内存的弊端就太严重了

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

回复 #1 homegirl 的帖子

第四个参数是指针, 可以用于输入,也可以用于输出

论坛徽章:
0
7 [报告]
发表于 2007-09-11 11:35 |只看该作者
pthread_join第二个参数获得的是thread本身的返回值,而不是pthread_create的返回值。
参照下面的例子。


  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.     pthread_exit((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. }
  27. ~         
复制代码

论坛徽章:
0
8 [报告]
发表于 2007-09-11 11:42 |只看该作者
rc是pthread_create的返回值,我需要的是thread的返回值

论坛徽章:
0
9 [报告]
发表于 2007-09-11 11:47 |只看该作者
pthread_join就是返回s_socket_api_socket_deal_thread的返回值
不是pthread_create的返回值

pthread_cteate本身就有返回值了,何必在pthread_join再返回一次呢

论坛徽章:
0
10 [报告]
发表于 2007-09-11 12:15 |只看该作者
  1. PTHREAD_JOIN(P)            POSIX Programmer’s Manual           PTHREAD_JOIN(P)

  2. NAME
  3.        pthread_join - wait for thread termination

  4. SYNOPSIS
  5.        #include <pthread.h>

  6.        int pthread_join(pthread_t thread, void **value_ptr);

  7. DESCRIPTION
  8.        The  pthread_join()  function  shall  suspend  execution of the calling
  9.        thread until the target thread terminates, unless the target thread has
  10.        already  terminated.  On  return  from a successful pthread_join() call
  11.        with a non-NULL value_ptr argument, the value passed to  pthread_exit()
  12.        by  the terminating thread shall be made available in the location ref-
  13.        erenced by value_ptr. When a pthread_join() returns  successfully,  the
  14.        target thread has been terminated. The results of multiple simultaneous
  15.        calls to pthread_join() specifying the same  target  thread  are  unde-
  16.        fined.  If the thread calling pthread_join() is canceled, then the tar-
  17.        get thread shall not be detached.
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP