stasis-aries-wal/src/libdfa/rw.c

156 lines
3.8 KiB
C
Raw Normal View History

2004-06-24 21:10:31 +00:00
#include <libdfa/rw.h>
2004-07-20 00:15:17 +00:00
#include <assert.h>
#undef pthread_cond_wait
#undef pthread_cond_timedwait
2004-06-24 21:10:31 +00:00
rwl *initlock (void)
{
rwl *lock;
lock = (rwl *)malloc (sizeof (rwl));
if (lock == NULL) return (NULL);
lock->mut = (pthread_mutex_t *) malloc (sizeof (pthread_mutex_t));
if (lock->mut == NULL) { free (lock); return (NULL); }
lock->writeOK =
(pthread_cond_t *) malloc (sizeof (pthread_cond_t));
if (lock->writeOK == NULL) { free (lock->mut); free (lock);
return (NULL); }
lock->readOK =
(pthread_cond_t *) malloc (sizeof (pthread_cond_t));
if (lock->writeOK == NULL) { free (lock->mut); free (lock->writeOK);
free (lock); return (NULL); }
pthread_mutex_init (lock->mut, NULL);
pthread_cond_init (lock->writeOK, NULL);
pthread_cond_init (lock->readOK, NULL);
lock->readers = 0;
lock->writers = 0;
lock->waiting = 0;
return (lock);
}
/*void readlock(rwl *lock, int d) {
writelock(lock, d);
}*/
void readlock (rwl *lock, int d)
{
2004-07-20 00:15:17 +00:00
/* printf("reader %d\n", d);
fflush(NULL); */
2004-06-24 21:10:31 +00:00
pthread_mutex_lock (lock->mut);
if (lock->writers || lock->waiting) {
do {
/* printf ("reader %d blocked. %d readers, %d writers, %d waiting\n", d, lock->readers, lock->writers, lock->waiting); */
pthread_cond_wait (lock->readOK, lock->mut);
/* printf ("reader %d unblocked.\n", d); */
} while (lock->writers);
}
lock->readers++;
pthread_mutex_unlock (lock->mut);
2004-07-20 00:15:17 +00:00
/* printf("reader %d done\n", d);
fflush(NULL); */
2004-06-24 21:10:31 +00:00
return;
}
void writelock (rwl *lock, int d)
{
2004-07-20 00:15:17 +00:00
/* printf("\nwritelock %d\n", d);
fflush(NULL); */
2004-06-24 21:10:31 +00:00
pthread_mutex_lock (lock->mut);
lock->waiting++;
while (lock->readers || lock->writers) {
/* printf ("writer %d blocked. %d readers, %d writers, %d waiting\n", d, lock->readers, lock->writers, lock->waiting); */
pthread_cond_wait (lock->writeOK, lock->mut);
/* printf ("writer %d unblocked.\n", d); */
}
lock->waiting--;
lock->writers++;
pthread_mutex_unlock (lock->mut);
2004-07-20 00:15:17 +00:00
/* printf("\nwritelock %d done\n", d);
fflush(NULL); */
2004-06-24 21:10:31 +00:00
return;
}
2004-07-20 00:15:17 +00:00
void downgradelock(rwl * lock) {
pthread_mutex_lock(lock->mut);
assert(lock->writers);
lock->writers--;
lock->readers++;
pthread_cond_signal (lock->writeOK);
2004-07-20 00:15:17 +00:00
pthread_cond_broadcast(lock->readOK);
pthread_mutex_unlock(lock->mut);
}
void unlock(rwl * lock) {
pthread_mutex_lock (lock->mut);
if(lock->readers) {
lock->readers--;
pthread_cond_signal (lock->writeOK);
} else {
assert (lock->writers);
lock->writers--;
/* Need this as well (in case there's another writer, which is blocking the all of the readers. */
pthread_cond_signal (lock->writeOK);
pthread_cond_broadcast (lock->readOK);
}
pthread_mutex_unlock (lock->mut);
}
2004-06-24 21:10:31 +00:00
/*void readunlock(rwl *lock) {
writeunlock(lock);
}*/
2004-07-20 00:15:17 +00:00
void readunlock(rwl * lock) {
unlock(lock);
}
void writeunlock(rwl * lock) {
unlock(lock);
}
/*
void readunlock (rwl *lock)
{
2004-06-24 21:10:31 +00:00
pthread_mutex_lock (lock->mut);
lock->readers--;
pthread_cond_signal (lock->writeOK);
2004-07-20 00:15:17 +00:00
/ * Don't need to broadcast, since only one writer can run at
once. * /
/ * pthread_cond_broadcast (lock->writeOK); * /
2004-06-24 21:10:31 +00:00
pthread_mutex_unlock (lock->mut);
2004-07-20 00:15:17 +00:00
/ * printf("readunlock done\n"); * /
}
2004-06-24 21:10:31 +00:00
2004-07-20 00:15:17 +00:00
void writeunlock (rwl *lock)
{
/ * printf("writeunlock done\n");
fflush(NULL); * /
pthread_mutex_lock (lock->mut);
lock->writers--;
/ * Need this as well (in case there's another writer, which is blocking the all of the readers. * /
pthread_cond_signal (lock->writeOK);
pthread_cond_broadcast (lock->readOK);
pthread_mutex_unlock (lock->mut);
}
*/
2004-06-24 21:10:31 +00:00
void deletelock (rwl *lock)
{
pthread_mutex_destroy (lock->mut);
pthread_cond_destroy (lock->readOK);
pthread_cond_destroy (lock->writeOK);
free(lock->mut);
free(lock->writeOK);
free(lock->readOK);
2004-06-24 21:10:31 +00:00
free (lock);
return;
}