From ee0f32f4ac63a937f0819e8d1caaf128e01cdf1e Mon Sep 17 00:00:00 2001
From: "P.J. Darcy" <darcypj@us.ibm.com>
Date: Sat, 2 Oct 2004 00:48:44 +0000
Subject: [PATCH] gthr-tpf.h (__gthread_recursive_mutex_t): New type.

2004-10-02  P.J. Darcy  <darcypj@us.ibm.com>

	* gthr-tpf.h (__gthread_recursive_mutex_t): New type.
	(__GTHREAD_RECURSIVE_MUTEX_INIT): Define.
	(__gthread_recursive_mutex_lock, __gthread_recursive_mutex_trylock,
	__gthread_recursive_mutex_unlock): New functions.

From-SVN: r88418
---
 gcc/ChangeLog  |  7 +++++++
 gcc/gthr-tpf.h | 34 ++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8e4f0fc128f6..24a1034c76e4 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2004-10-02  P.J. Darcy  <darcypj@us.ibm.com>
+
+	* gthr-tpf.h (__gthread_recursive_mutex_t): New type.
+	(__GTHREAD_RECURSIVE_MUTEX_INIT): Define.
+	(__gthread_recursive_mutex_lock, __gthread_recursive_mutex_trylock,
+	__gthread_recursive_mutex_unlock): New functions.
+
 2004-10-02  P.J. Darcy  <darcypj@us.ibm.com>
 
 	* config/s390/t-tpf (LIB2ADDEH): Remove tpf-eh.c.
diff --git a/gcc/gthr-tpf.h b/gcc/gthr-tpf.h
index 9831c666dc43..6eac833dda7c 100644
--- a/gcc/gthr-tpf.h
+++ b/gcc/gthr-tpf.h
@@ -51,6 +51,13 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 typedef pthread_key_t __gthread_key_t;
 typedef pthread_once_t __gthread_once_t;
 typedef pthread_mutex_t __gthread_mutex_t;
+typedef pthread_mutex_t __gthread_recursive_mutex_t;
+
+#if defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
+#define __GTHREAD_RECURSIVE_MUTEX_INIT PTHREAD_RECURSIVE_MUTEX_INITIALIZER
+#elif defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP)
+#define __GTHREAD_RECURSIVE_MUTEX_INIT PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
+#endif
 
 #define __GTHREAD_MUTEX_INIT PTHREAD_MUTEX_INITIALIZER
 #define __GTHREAD_ONCE_INIT PTHREAD_ONCE_INIT
@@ -154,4 +161,31 @@ __gthread_mutex_unlock (__gthread_mutex_t *mutex)
     return 0;
 }
 
+static inline int
+__gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *mutex)
+{
+  if (__tpf_pthread_active ())
+    return __gthread_mutex_lock (mutex);
+  else
+    return 0;
+}
+
+static inline int
+__gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *mutex)
+{
+  if (__tpf_pthread_active ())
+    return __gthread_mutex_trylock (mutex);
+  else
+    return 0;
+}
+
+static inline int
+__gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex)
+{
+  if (__tpf_pthread_active ())
+    return __gthread_mutex_unlock (mutex);
+  else
+    return 0;
+}
+
 #endif /* ! GCC_GTHR_TPF_H */