打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
线程共享进程中的数据
#include<stdio.h>
#include<pthread.h>
#include<unistd.h>
static int shdata=4;
void *create(void *arg){
 printf("new pthread...\n");
 printf("shared data=%d \n",shdata);
}
int main(int argc,char *argv[]){
 int res;
 pthread_t a_thread;
 res=pthread_create(&a_thread,NULL,*create,NULL);
 if(res!=0){
  perror("Thread creation failed");
  exit(-1);
 
 }
 sleep(1);
 printf("Thread creation successed!");
 exit(0);
 
}
---------------------------华丽的分割线---------------------------------
编译运行:
$gcc -Wall -lpthread -o test2 pthreadshare.c
$./test2

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
pthread
多线程之私有数据(YC)
c语言多线程编程使用示例
线程 统计字符数
c线程基础
thread
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服