* gfortran.dg/ieee/ieee_1.F90: Revert rename.
[gcc.git] / libgcc / gthr-posix.h
index cc4e518f5b9907db18cdfc0a37fbeb67451b63d5..7003a9135b4330936d73d71c204c6b2889c526c7 100644 (file)
@@ -1,7 +1,6 @@
 /* Threads compatibility routines for libgcc2 and libobjc.  */
 /* Compile this one with gcc.  */
-/* Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
-   2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
+/* Copyright (C) 1997-2014 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -832,6 +831,12 @@ __gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *__mutex)
   return __gthread_mutex_unlock (__mutex);
 }
 
+static inline int
+__gthread_recursive_mutex_destroy (__gthread_recursive_mutex_t *__mutex)
+{
+  return __gthread_mutex_destroy (__mutex);
+}
+
 #ifdef _GTHREAD_USE_COND_INIT_FUNC
 static inline void
 __gthread_cond_init_function (__gthread_cond_t *__cond)
@@ -873,14 +878,6 @@ __gthread_cond_wait_recursive (__gthread_cond_t *__cond,
   return __gthread_cond_wait (__cond, __mutex);
 }
 
-static inline int
-__gthread_cond_timedwait_recursive (__gthread_cond_t *__cond,
-                                   __gthread_recursive_mutex_t *__mutex,
-                                   const __gthread_time_t *__abs_timeout)
-{
-  return __gthread_cond_timedwait (__cond, __mutex, __abs_timeout);
-}
-
 static inline int
 __gthread_cond_destroy (__gthread_cond_t* __cond)
 {