码迷,mamicode.com
首页 > 编程语言 > 详细

线程传递参数

时间:2014-12-26 16:19:48      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

#include "stdio.h"
#include "unistd.h"
#include "pthread.h"
 
void *func(void *p)
{
    int i;
    int *a=(int*)p;
    for (i=0; i<20; i++)
    {
        a[i]=100+i;
        sleep(1);
    }
    return NULL;
}
 
int main()
{
    int a[20];
    pthread_t id;
    pthread_create(&id, NULL, func, a);
    sleep(2);            //让辅助线程先完成
    int i;
    for (i=0; i<20; i++)
    {
        printf("%d ", a[i]);
        fflush(stdout);
        sleep(1);
    }
    return 0;
}

线程传递参数

标签:

原文地址:http://www.cnblogs.com/zhangwuliang/p/4186953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!