Linux多线程——异步

本文探讨了Linux系统下的线程异步处理,通过示例代码`test.c`指出线程返回结果不能定义为局部变量,否则可能导致段错误的问题。

Linux线程异步

test.c

#include <pthread.h>
#include <stdlib.h>
#include <stdio.h>
void* thread1Func(void* arg)
{
         printf("childThread1 is running\n");
         pthread_exit((void*)0);
}
void* thread2Func(void* arg)
{
          printf("childThread2 is running\n");
          pthread_exit((void*)0);
}

void* ret_result_thread1;
void* ret_result_thread2;
int main(int argc, char** argv)
{
      printf("main thread is running\n");
      pthread_t thread1,thread2;
      int result;
      if( (result = pthread_create(&thread1,NULL,thread1Func,NULL)) != 0)
      {
             perror("thread1 create failed");
      }

      if( (result = pthread_create(&thread2,NULL,thread2Func,NULL)) != 0)
      {
             perror("thread2 create failed");
      }

       pthread_join(thread1,ret_result_thread1);
       pthread_join(thread2,ret_result_thread2);

       printf("main thread is finished\n");
       return 0;
}

这里写图片描述

注意:线程的返回结果不能定义为局部变量,否则会报segmentation fault(段错误)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值