学习笔记 c++ (linux pthread C++ 多线程互斥锁)

需要引用头文件 <pthread.h>

pthread_create(&thread1,NULL,(void *)&dealfunction,NULL); //创建线程

thread1声明格式:pthread_t thread1。

NULL:表示线程属性的指针,可默认为NULL。

dealfunction声明格式:void dealfunction()。返回值可以为其它,可以有参数。

NULL:处理函数的参数指针。

pthread_join(thread1,NULL); //阻塞当前线程,立即执行线程1。

pthread_mutex_init(&mutex1,NULL); //初始化互斥锁

mutex1声明格式:pthread_mutex_t mutex1。

NULL:互斥锁属性。

pthread_mutex_destroy(&mutex1); //释放锁资源。

pthread_mutex_lock(&mutex1); //加锁

pthread_mutex_unlock(&mutex1); //去锁

在代码中使用pthread,进行编译时,需要使用命令 gcc -o hello hello.c -lpthread

-lpthread 必须要有,否则会报 undefined reference to 'pthread_create'等错误。

#include<pthread.h>
#include<iostream>
#include<unistd.h>

using namespace std;

pthread_mutex_t mutex1;

void *myid1(void *arg)
{
    pthread_mutex_lock(&mutex1);//上锁
    for(int i=0;i<5;i++)
    {
        sleep(1);
        cout<<"myid111111"<<endl;
    }
    pthread_mutex_unlock(&mutex1);//开锁
}

void *myid2(void *arg)
{
    //pthread_mutex_lock(&mutex1);
    for(int i=0;i<5;i++)
    {
        sleep(1);
        cout<<"myid222222"<<endl;
    }
    //pthread_mutex_unlock(&mutex1);
}

void *myid3(void *arg)
{
    pthread_mutex_lock(&mutex1);
    for(int i=0;i<5;i++)
    {
        sleep(1);
        cout<<"myid333333"<<endl;
    }
    pthread_mutex_unlock(&mutex1);
}

int main(int argc, char** argv)
{
    pthread_t id1,id2,id3;
    pthread_mutex_init(&mutex1,NULL);//初始化互斥锁
    
    pthread_create(&id1,NULL,myid1,NULL);
    pthread_create(&id2,NULL,myid2,NULL);
    pthread_create(&id3,NULL,myid3,NULL);    
    
    pthread_exit(&id1);
    pthread_exit(&id2);
    pthread_exit(&id3);

    pthread_mutex_destroy(&mutex1);//释放互斥锁
}

猜你喜欢

转载自blog.csdn.net/qq_42145185/article/details/82868817
今日推荐