Linux 多线程1

主要用到的几个函数
//作用创建线程
pthread_create() //pthread_t类型实例(这里是个引用), 在linux中pthread_t被定义为 “unsigned long int”,要创建线程属性,调用的线程函数,线程函数需要的参数
//等待线程返回,阻塞式等待
pthread_join() //

//子线程退出函数
pthread_exit()

编译时命令
g++ -D_REENTRANT -I /usr/include/nptl thread1.cc -o thread1 -L /usr/lib/nptl -lpthread

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>

void *thread_func(void *arg);

char message[] ="hello world";
pthread_t a_thread;
void *thread_result;

int main()
{
  int res=0;
  printf("main start running");

  res=pthread_create(&a_thread,NULL,thread_func,(void *)message);
  if(res !=0){
    printf("pthread_create failed res=%d",res);
    exit(EXIT_FAILURE);
  }

  res =pthread_join(a_thread,&thread_result);
  if(res !=0){
    printf("pthread_join failed");
    exit(EXIT_FAILURE);
  }

  printf("Thread joined success");
  printf("message now is %s",message);

  exit(EXIT_SUCCESS);



}

void *thread_func(void *args){
  printf("new thread starting..\n");
  strcpy(message,"aaaa");

  pthread_exit((void *)"the end\n");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值