线程同步——互斥量

互斥量的使用:

// 线程同步之互斥量
#include <iostream>
#include <string>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <pthread.h>

using namespace std;

// 全局变量,两个线程都可以修改,因此修改的时候需要加锁
int g_Value = 0;

// 互斥量
pthread_mutex_t lock;

// 线程函数1
void* thread_func1(void* data)
{
    int i = 0;
    while(i < 10)
    {
        ++i;

        // 加锁
        pthread_mutex_lock(&lock);
        // 修改全局变量
        ++g_Value;
        // 解锁
        pthread_mutex_unlock(&lock);
    }
    return 0;
}

// 线程函数2
void* thread_func2(void* data)
{
    int i = 0;
    while(i < 10)
    {
        ++i;
        // 加锁
        pthread_mutex_lock(&lock);
        // 修改全局变量
        ++g_Value;
        // 解锁
        pthread_mutex_unlock(&lock);
    }
    return 0;
}

// 主函数
int main(int argc,char* argv[])
{
    // 初始化互斥量
    pthread_mutex_init(&lock,0);
    // 定义两个线程id
    pthread_t thd1,thd2;
    // 创建两个线程
    pthread_create(&thd1,0,thread_func1,0);
    pthread_create(&thd2,0,thread_func2,0);

    // 等待两个线程运行结束
    pthread_join(thd1,0);
    pthread_join(thd2,0);

    // 销毁互斥量
    pthread_mutex_destroy (&lock);

    cout << g_Value<<endl;
    return  0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值