I'm working on Linux 2.4 (doing h.w for my O.S course), I want to use pthread to implement a reader-writer lock. In rw_lock.c I have:
#include <pthread.h>
#include <stdlib.h>
#include "rw_lock.h"
struct readers_writers_t
{
int prio;
int number_of_readers;
pthread_cond_t no_readers;
int number_of_writers;
int number_of_waiting_writers;
pthread_cond_t no_writers;
pthread_mutex_t lock;
};
[functions...]
in rw_lock.h I have:
typedef struct readers_writers_t readers_writers;
In another C file (implementation of linked list) I have :
#include "rw_lock.h"
struct LinkedList
{
ListNode* head;
ListNode* tail;
readers_writers rwLock;
};
(and more functions,includes etc').
I get (one) compilation error :
"rwLock has incomplete type".
I have no idea why I get this error (or how to fix it...).
help is appreciated,thanks!