linux多线程入门

    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);                        //等待线程结束函数

 reference:

Linux下的多线程编程

转载于:https://www.cnblogs.com/gattaca/p/4729244.html

猜你喜欢

转载自blog.csdn.net/weixin_34392906/article/details/93401851