博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pthread
阅读量:5011 次
发布时间:2019-06-12

本文共 482 字,大约阅读时间需要 1 分钟。

#include <stdio.h>

#include <stdlib.h>

#include <pthread.h>

void thread(void)

{ int i;

for(i=0;i<3;i++)

{ sleep(1);

printf("This is a pthread.\n");

}

}

int main(void)

{

pthread_t id;

int i,ret;

ret=pthread_create(&id,NULL,(void *) thread,NULL);

if(ret!=0){ printf ("Create pthread error!\n"); exit (1); }

for(i=0;i<3;i++)

{

printf("This is the main process.\n"); sleep(1);

}

pthread_join(id,NULL); return (0);

}

转载于:https://www.cnblogs.com/greencolor/archive/2012/02/17/2356524.html

你可能感兴趣的文章
将Windows Server 2016 打造成工作站(20161030更新)
查看>>
5大主浏览器css3和html5兼容性大比拼
查看>>
hdu-5894 hannnnah_j’s Biological Test(组合数学)
查看>>
scss常规用法
查看>>
css定位position属性深究
查看>>
android中不同版本兼容包的区别
查看>>
Static 与 new 的问题【待解决】
查看>>
xml
查看>>
在 mvc4 WebApi 中 json 的 跨域访问
查看>>
敏捷开发文章读后感
查看>>
xposed获取context 的方法
查看>>
html5 canvas 图像处理
查看>>
He who hesitates is Lost
查看>>
php中引用&的真正理解-变量引用、函数引用、对象引用
查看>>
关于<form> autocomplete 属性
查看>>
OutOfMemory
查看>>
LeetCode:组合总数III【216】
查看>>
Thinkphp框架回顾(三)之怎么实现平常的sql操作数据库
查看>>
虚函数的效率问题
查看>>
POJ 1860 Currency Exchange(SPFA 判断有无“正”环)
查看>>