文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>线程创建

线程创建

时间:2010-12-09  来源:luozhiyong131

#include <stdio.h>

#include <pthread.h>

#include <unistd.h>

#include <stdlib.h>

 

struct menber

{

    int a;

    char *s;

};

 

/*线程执行函数*/

void *create(void *arg)

{

    struct menber *temp;

    temp=(struct menber *)arg;

    printf("menber->a = %d  \n",temp->a);

    printf("menber->s = %s  \n",temp->s);

    return (void *)0;

}

 

int main(int argc,char *argv[])

{

    pthread_t tidp;

    int error;

    struct menber *b;

 

      /*为结构体指针b分配内存并赋值*/

    b=(struct menber *)malloc( sizeof(struct menber) );

    b->a = 4;

    b->s = "zieckey";

   

      /*创建线程并运行线程执行函数*/

    error = pthread_create(&tidp, NULL, create, (void *)b);

    if( error )

    {

        printf("phread is not created...\n");

        return -1;

    }

 

    sleep(1); //进程睡眠一秒使线程执行完后进程才会结束

 

    printf("pthread is created...\n");

    return 0;

}

 

 

编译时要加上编译参数 -lpthread

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载