生產者消費者模型

2021-10-03 03:39:16 字數 1271 閱讀 2814

生產者消費者模型

生產者消費者模型是程序間同步互斥的經典問題。生產者負責生產產品,消費者負責消費產品。但是生產者和消費者必須互斥的訪問倉庫。下面實現乙個用鍊錶動態分配空間的生產者消費者模型。

#include

#include

#include

#include

#define consumers_count 2

#define producers_count 2

struct msg

;struct msg *head =

null

;pthread_count_t cond;

//條件變數

pthread_mutex_t mutex;

//互斥訊號量

pthread_t threads[consuers_count+producers_count]

;void

*consumer

(void

*p)printf

("%d end wait a condition...\n"

,num)

;printf

("%d begin consume product...\n"

,num)

; mp = head;

head = mp-

>next;

pthread_mutex_unlock

(&mutex)

;//釋放互斥訊號量的鎖

printf

("consumer %d\n"

,mp-

>num)

;free

(mp)

;printf

("%d end consume product...\n"

,num)

;sleep

(rand()

%5);

}}void

*producer

(void

*p)}

intmain

(void

)for

(i=0

;i)for

(i=0

;i)pthread_join

(threads[i]

,null);

pthread_mutex_destroy

(&mutex)

;pthread_cond_destroy

(&cond)

;}

生產者消費者模型

1.生產者消費者問題 producer consumer 有限緩衝,多執行緒同步。生產者執行緒和消費者執行緒共享固定大小緩衝區。2.關鍵是保證生產者不會再緩衝區滿時加入資料,消費者不會在緩衝區空時消耗資料。3.解決辦法 讓生產者在緩衝區滿時休眠,等下次消費者消耗緩衝區中的資料的時候,生產者才能被喚醒...

生產者消費者模型

生產者與消費者 3,2,1 三種關係 生產者與消費者 互斥,同步 消費者與消費者 互斥 生產者與生產者 互斥 條件變數 int pthread cond destroy pthread cond t cond int pthread cond init pthread cond t restrict...

生產者消費者模型

當佇列滿時,生產者需要等待佇列有空間才能繼續往裡面放入商品,而在等待的期間內,生產者必須釋放對臨界資源 即佇列 的占用權。因為生產者如果不釋放對臨界資源的占用權,那麼消費者就無法消費佇列中的商品,就不會讓佇列有空間,那麼生產者就會一直無限等待下去。因此,一般情況下,當佇列滿時,會讓生產者交出對臨界資...