- 论坛徽章:
- 0
|
本帖最后由 Unix_C_Linux 于 2015-10-20 17:36 编辑
情景:缓冲区放入1000数, 生产者和消费者操作分别存取
1.当生产者和消费者数量是1:1时,写数据记录和读数据记录相等,都是1000
2.当生产者和消费者数量是1:N时,写数据的数量是1000,为什么读数据的数量之和大于1000?很多都是重复的,多个线程间是有锁和条件变量的,为什么会读出同样的数据啊?
代码如下,编译后可以直接运行。- #include <stdio.h>
- #include <stdlib.h>
- #define BUFFER_SIZE 16 // 缓冲区数量
- struct prodcons
- {
- // 缓冲区相关数据结构
- int buffer[BUFFER_SIZE]; /* 实际数据存放的数组*/
- pthread_mutex_t lock; /* 互斥体lock 用于对缓冲区的互斥操作 */
- int readpos, writepos; /* 读写指针*/
- pthread_cond_t notempty; /* 缓冲区非空的条件变量 */
- pthread_cond_t notfull; /* 缓冲区未满的条件变量 */
- };
- /* 初始化缓冲区结构 */
- void init(struct prodcons *b)
- {
- pthread_mutex_init(&b->lock, NULL);
- pthread_cond_init(&b->notempty, NULL);
- pthread_cond_init(&b->notfull, NULL);
- b->readpos = 0;
- b->writepos = 0;
- }
- /* 将产品放入缓冲区,这里是存入一个整数*/
- void put(struct prodcons *b, int data)
- {
- pthread_mutex_lock(&b->lock);
- /* 等待缓冲区未满*/
- if ((b->writepos + 1) % BUFFER_SIZE == b->readpos)
- {
- pthread_cond_wait(&b->notfull, &b->lock);
- }
-
- if(data != -1){
- printf("putdata\n");
- }
- /* 写数据,并移动指针 */
- b->buffer[b->writepos] = data;
- b->writepos = (b->writepos + 1)%BUFFER_SIZE;
- /* 设置缓冲区非空的条件变量*/
- pthread_cond_signal(&b->notempty);
- pthread_mutex_unlock(&b->lock);
- }
- /* 从缓冲区中取出整数*/
- int get(struct prodcons *b)
- {
- int data;
- pthread_mutex_lock(&b->lock);
- /* 等待缓冲区非空*/
- if (b->writepos == b->readpos)
- {
- pthread_cond_wait(&b->notempty, &b->lock);
- }
- /* 读数据,移动读指针*/
- data = b->buffer[b->readpos];
- if(data != -1){
- printf("getdata\n", data);
- }
- b->readpos = (b->readpos + 1) % BUFFER_SIZE;
- /* 设置缓冲区未满的条件变量*/
- pthread_cond_signal(&b->notfull);
- pthread_mutex_unlock(&b->lock);
- return data;
- }
- /* 测试:生产者线程将1 到10000 的整数送入缓冲区,消费者线
- 程从缓冲区中获取整数,两者都打印信息*/
- #define OVER ( - 1)
- struct prodcons buffer;
- void *producer(void *data)
- {
- int n;
- for (n = 0; n < 1000; n++)
- {
- //printf("%d --->\n", n);
- put(&buffer, n);
- }
- put(&buffer, OVER);
- put(&buffer, OVER);
- put(&buffer, OVER);
- return NULL;
- }
- void *consumer(void *data)
- {
- int d;
- while (1)
- {
- d = get(&buffer);
- if (d == OVER)
- break;
- // printf("xxx|%d\n", d);
- }
- return NULL;
- }
- int main(void)
- {
- pthread_t th_a, th_b, th_c, th_d;
- void *retval;
- init(&buffer);
- /* 创建生产者和消费者线程*/
- pthread_create(&th_a, NULL, producer, 0);
- pthread_create(&th_b, NULL, consumer, 0);
- pthread_create(&th_c, NULL, consumer, 0);
- pthread_create(&th_d, NULL, consumer, 0);
- /* 等待四个线程结束*/
- pthread_join(th_a, &retval);
- pthread_join(th_b, &retval);
- pthread_join(th_c, &retval);
- pthread_join(th_d, &retval);
- return 0;
- }
复制代码 |
|