cygwin: Implement pthread_rwlock_timedrdlock, pthread_rwlock_timedwrlock

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen
2017-08-03 21:31:38 +02:00
parent eb206317a8
commit 8128f5482f
7 changed files with 84 additions and 11 deletions

View File

@@ -587,10 +587,10 @@ public:
} *readers;
fast_mutex readers_mx;
int rdlock ();
int rdlock (PLARGE_INTEGER timeout = NULL);
int tryrdlock ();
int wrlock ();
int wrlock (PLARGE_INTEGER timeout = NULL);
int trywrlock ();
int unlock ();