[Glibc-bsd-commits] r4707 - trunk/glibc-ports/fbtl

Petr Salinger ps-guest at alioth.debian.org
Tue Jul 9 19:32:01 UTC 2013


Author: ps-guest
Date: 2013-07-09 19:32:01 +0000 (Tue, 09 Jul 2013)
New Revision: 4707

Modified:
   trunk/glibc-ports/fbtl/pthread_rwlock_timedrdlock.c
   trunk/glibc-ports/fbtl/pthread_rwlock_timedwrlock.c
Log:
missing #include <sys/time.h>



Modified: trunk/glibc-ports/fbtl/pthread_rwlock_timedrdlock.c
===================================================================
--- trunk/glibc-ports/fbtl/pthread_rwlock_timedrdlock.c	2013-07-09 19:31:29 UTC (rev 4706)
+++ trunk/glibc-ports/fbtl/pthread_rwlock_timedrdlock.c	2013-07-09 19:32:01 UTC (rev 4707)
@@ -21,8 +21,8 @@
 #include <lowlevellock.h>
 #include <pthread.h>
 #include <pthreadP.h>
+#include <sys/time.h>
 
-
 /* Try to acquire read lock for RWLOCK or return after specfied time.  */
 int
 pthread_rwlock_timedrdlock (rwlock, abstime)

Modified: trunk/glibc-ports/fbtl/pthread_rwlock_timedwrlock.c
===================================================================
--- trunk/glibc-ports/fbtl/pthread_rwlock_timedwrlock.c	2013-07-09 19:31:29 UTC (rev 4706)
+++ trunk/glibc-ports/fbtl/pthread_rwlock_timedwrlock.c	2013-07-09 19:32:01 UTC (rev 4707)
@@ -21,6 +21,7 @@
 #include <lowlevellock.h>
 #include <pthread.h>
 #include <pthreadP.h>
+#include <sys/time.h>
 
 
 /* Try to acquire write lock for RWLOCK or return after specfied time.	*/




More information about the Glibc-bsd-commits mailing list