首页 > 编程语言 > 详细

linux多线程入门

时间:2015-08-14 11:31:04      阅读:222      评论:0      收藏:0      [点我收藏+]

    linux下的多线程通过pthread实现,下面给个简单的例子。

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

void* thr_fn()
{
    printf("this is a thread, tid = %d\n", pthread_self());
    printf("thread return\n");
    return (void*)0;
}

int main()
{
    printf("this is the main thread, pid = %d\n", getpid());
    pthread_t tid;
    int ret;
    ret = pthread_create(&tid, NULL, thr_fn, NULL);
    if (ret != 0)
    {
        printf("create thread error\n");
         exit(1);
    }
    pthread_join(tid, NULL);
    printf("main thread return\n");
    return 0;
}

执行输出如下:

 技术分享

    主要涉及两个函数:

 int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
                          void *(*start_routine) (void *), void *arg);      //线程创建函数
  int pthread_join(pthread_t thread, void **retval);                        //等待线程结束函数

 

linux多线程入门

原文:http://www.cnblogs.com/gattaca/p/4729244.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!