摘要: 假设有一个生产者线程,一个消费者线程,生产一个,消费一个。我们来看看怎么实现。 #include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <assert.h> int buffer; int count = 0; voi 阅读全文
posted @ 2019-11-19 00:04 Vzf 阅读(310) 评论(0) 推荐(0) 编辑