gthr-tpf.h (__gthread_recursive_mutex_t): New type.
authorP.J. Darcy <darcypj@us.ibm.com>
Sat, 2 Oct 2004 00:48:44 +0000 (00:48 +0000)
committerUlrich Weigand <uweigand@gcc.gnu.org>
Sat, 2 Oct 2004 00:48:44 +0000 (00:48 +0000)
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
gcc/gthr-tpf.h

index 8e4f0fc128f69ec7c75e6b9ee8f11fb9e80d798e..24a1034c76e4455176e9d10e775709fddcf9fbe1 100644 (file)
@@ -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.
index 9831c666dc4399fbb65f36964e9c44da74a5722f..6eac833dda7caf56e8bed4ebedafdda1974a6271 100644 (file)
@@ -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 */