亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c++ pthread怎么實現線程間通信

c++
小樊
84
2024-06-25 16:39:31
欄目: 編程語言

在C++中使用pthread庫實現線程間通信,可以使用互斥鎖(mutex)、條件變量(condition variable)和信號量(semaphore)等同步機制。以下是使用互斥鎖和條件變量實現線程間通信的示例代碼:

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

int shared_data = 0;
pthread_mutex_t mutex;
pthread_cond_t cond;

void* producer(void* arg) {
    for(int i = 0; i < 5; i++) {
        pthread_mutex_lock(&mutex);
        shared_data = i;
        std::cout << "Produced: " << i << std::endl;
        pthread_cond_signal(&cond);
        pthread_mutex_unlock(&mutex);
        sleep(1);
    }
    pthread_exit(NULL);
}

void* consumer(void* arg) {
    for(int i = 0; i < 5; i++) {
        pthread_mutex_lock(&mutex);
        while(shared_data == 0) {
            pthread_cond_wait(&cond, &mutex);
        }
        std::cout << "Consumed: " << shared_data << std::endl;
        shared_data = 0;
        pthread_mutex_unlock(&mutex);
    }
    pthread_exit(NULL);
}

int main() {
    pthread_t producer_thread, consumer_thread;
    
    pthread_mutex_init(&mutex, NULL);
    pthread_cond_init(&cond, NULL);
    
    pthread_create(&producer_thread, NULL, producer, NULL);
    pthread_create(&consumer_thread, NULL, consumer, NULL);
    
    pthread_join(producer_thread, NULL);
    pthread_join(consumer_thread, NULL);
    
    pthread_mutex_destroy(&mutex);
    pthread_cond_destroy(&cond);
    
    return 0;
}

在上面的示例代碼中,通過互斥鎖保護共享數據shared_data,生產者線程將數據寫入shared_data,并發送信號通知消費者線程;消費者線程在收到信號后從shared_data中讀取數據。通過條件變量實現線程的等待和通知。

0
桂阳县| 桦川县| 长丰县| 历史| 聂拉木县| 西乡县| 韶关市| 台州市| 宁波市| 银川市| 望城县| 阿巴嘎旗| 灵寿县| 娄底市| 涞源县| 图木舒克市| 荥经县| 玉山县| 通州区| 福清市| 新乡县| 镇康县| 藁城市| 建德市| 万年县| 饶平县| 湘阴县| 凤庆县| 东乡族自治县| 青冈县| 平湖市| 东阳市| 哈尔滨市| 满洲里市| 芜湖县| 乾安县| 新源县| 松潘县| 南昌市| 崇明县| 葵青区|