Skip to content
Snippets Groups Projects
Commit 395b18be authored by deuce's avatar deuce
Browse files

Removed unused struct that collides with MIT pthreads implementation.

parent 80585bed
No related branches found
No related tags found
No related merge requests found
......@@ -110,13 +110,6 @@ struct pthread_rwlockattr {
int pshared;
};
struct pthread_rwlock {
pthread_mutex_t lock; /* monitor lock */
int state; /* 0 = idle >0 = # of readers -1 = writer */
pthread_cond_t read_signal;
pthread_cond_t write_signal;
int blocked_writers;
};
/* End thread_private.h kluge */
#endif /* _XPSEM_H_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment