繁体   English   中英

C Reader编写器线程锁定解锁

[英]C Reader Writer Threads Lock Unlock

我试图完成我认为简单的任务,但几天后就达到了一个临界点。

我正在尝试使用多个读取器和一个写入器来模拟数据库。 当我运行程序时,它陷入僵局。

我试图基于此算法:

 1 semaphore accessMutex;     // Initialized to 1
 2 semaphore readersMutex;    // Initialized to 1
 3 semaphore orderMutex;      // Initialized to 1
 4 
 5 unsigned int readers = 0;  // Number of readers accessing the resource
 6 
 7 void reader()
 8 {
 9   P(orderMutex);           // Remember our order of arrival
10 
11   P(readersMutex);         // We will manipulate the readers counter
12   if (readers == 0)        // If there are currently no readers (we came first)...
13     P(accessMutex);        // ...requests exclusive access to the resource for readers
14   readers++;               // Note that there is now one more reader
15   V(orderMutex);           // Release order of arrival semaphore (we have been served)
16   V(readersMutex);         // We are done accessing the number of readers for now
17 
18   ReadResource();          // Here the reader can read the resource at will
19 
20   P(readersMutex);         // We will manipulate the readers counter
21   readers--;               // We are leaving, there is one less reader
22   if (readers == 0)        // If there are no more readers currently reading...
23     V(accessMutex);        // ...release exclusive access to the resource
24   V(readersMutex);         // We are done accessing the number of readers for now
25 }
26 
27 void writer()
28 {
29   P(orderMutex);           // Remember our order of arrival
30   P(accessMutex);          // Request exclusive access to the resource
31   V(orderMutex);           // Release order of arrival semaphore (we have been served)
32 
33   WriteResource();         // Here the writer can modify the resource at will
34 
35   V(accessMutex);          // Release exclusive access to the resource
36 }

但是我试图仅使用pthreads而不是信号量来实现它。 如您所料,这是一团糟:

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#define MAX 5 //size of buffer

pthread_mutex_t mutex; //pthread_mutex type
pthread_cond_t condw, condr; //reader/writer cond var
int buffer = 0, rc = 0;

pthread_mutex_t db; //pthread_mutex type

//reader-writer header:
void* writer(void* ptr);
void* reader(void* ptr);

void use_data();
void write_database();
void readdb();

int main(int argc, char** argv)
{
  pthread_t read,write;
  //allow signal back and forth
  pthread_mutex_init(&mutex,0); //init mutex
  pthread_cond_init(&condw, 0); //init writer
  pthread_cond_init(&condr,0); //init reader

    pthread_mutex_init(&db,0); //init db

  //this calls the void* reader function
  pthread_create(&write,0,writer,0); //create thread
  pthread_create(&read,0,reader,0); //create thread

  //let them join
  pthread_join(read,0);
  pthread_join(write,0);

  //destroy them
  pthread_cond_destroy(&condw);
  pthread_cond_destroy(&condr);
  pthread_mutex_destroy(&db);
  pthread_mutex_destroy(&mutex);

  return 0;
}//end main

void* reader(void* arg)
{
  while(1) //if there is a reader lock the db 
  {
    pthread_mutex_lock(&mutex);
    rc++;
    if(rc==1)
    {
      pthread_mutex_lock(& db);
    }
    pthread_mutex_unlock(&mutex);
    readdb();
    pthread_mutex_lock(&mutex);
    rc--;
    if(rc==0) 
    {
      pthread_mutex_unlock(&db);
    }
    pthread_mutex_unlock(&mutex);
    use_data();
  }
}

void* writer(void* arg)
{
  while(1) //unlock the db
  {
    pthread_mutex_lock(&db);
    write_database();
    pthread_mutex_unlock(&db);
  }
}

void use_data(){}
void write_database(){}
void readdb(){}

任何对工作解决方案的帮助以及对我们哪里出了问题的解释,我们将不胜感激,因为这将帮助我和我的同事。 问候。

问题在于您的源算法依赖于以下事实:一个线程锁定了accessMutex锁,然后另一个线程可能将其解锁。 这是允许用信号量互斥体,但不允许用于并行线程互斥。

pthread中有信号量,由sem_init()sem_post()sem_wait()函数提供。 您可以使用它们编写源算法的直接实现,并且它应该可以正常工作。

另外,pthreads还提供了本机读写锁定类型-请参见函数pthread_rwlock_init()pthread_rwlock_rdlock()pthread_rwlock_wrlock()pthread_rwlock_unlock() 您可以将其用于一个非常简单的实现,但是很显然,如果应该将其作为学习练习,则可能会遗漏要点。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM