中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
新营市| 桐乡市| 余江县| 平原县| 宣威市| 沧源| 赫章县| 成都市| 江永县| 玉山县| 桓台县| 临夏市| 大冶市| 绥滨县| 三亚市| 宁安市| 永仁县| 大埔区| 诸暨市| 兴国县| 宜川县| 克拉玛依市| 通州市| 永兴县| 南部县| 华蓥市| 塔城市| 木里| 新巴尔虎左旗| 平塘县| 天水市| 平利县| 通许县| 宿州市| 和田市| 曲水县| 上高县| 馆陶县| 冕宁县| 宁化县| 苍梧县|