diff options
author | corsepiu <corsepiu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-13 15:50:07 +0000 |
---|---|---|
committer | corsepiu <corsepiu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-13 15:50:07 +0000 |
commit | 6a18fdb1a4dc5e22c583c641a1449764c7cf2bd7 (patch) | |
tree | 988f5e5cb4b36f808f334be94f3fd8e18f052914 | |
parent | 7c36d6a231fc35c236878277ee014020dd030c4b (diff) | |
download | gcc-6a18fdb1a4dc5e22c583c641a1449764c7cf2bd7.tar.gz |
2005-01-13 Ralf Corsepius <ralf.corsepius@rtems.org>
Joel Sherrill <joel@oarcorp.com>
PR target/19399
* gthr-rtems.h (__gthread_recursive_mutex_t): New type.
(__GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION): Define to
rtems_gxx_recursive_mutex_init.
(__gthread_recursive_mutex_lock): New function.
(__gthread_recursive_mutex_trylock): Likewise.
(__gthread_recursive_mutex_unlock): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93601 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/gthr-rtems.h | 28 |
2 files changed, 38 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7884397d8a..0b8b1a9a327 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2005-01-13 Ralf Corsepius <ralf.corsepius@rtems.org> + Joel Sherrill <joel@oarcorp.com> + + PR target/19399 + * gthr-rtems.h (__gthread_recursive_mutex_t): New type. + (__GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION): Define to + rtems_gxx_recursive_mutex_init. + (__gthread_recursive_mutex_lock): New function. + (__gthread_recursive_mutex_trylock): Likewise. + (__gthread_recursive_mutex_unlock): Likewise. + 2005-01-13 Ralf Corsepius <ralf.corsepius@rtems.org> * config/i386/t-rtems-i386: Multilib on -mtune instead of -mcpu. diff --git a/gcc/gthr-rtems.h b/gcc/gthr-rtems.h index 73152528aed..a1b58f6cc33 100644 --- a/gcc/gthr-rtems.h +++ b/gcc/gthr-rtems.h @@ -1,7 +1,8 @@ /* RTEMS threads compatibility routines for libgcc2 and libobjc. by: Rosimildo da Silva( rdasilva@connecttel.com ) */ /* Compile this one with gcc. */ -/* Copyright (C) 1997, 1999, 2000, 2002, 2003 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1999, 2000, 2002, 2003, 2005 + Free Software Foundation, Inc. This file is part of GCC. @@ -39,11 +40,13 @@ extern "C" { #define __GTHREAD_ONCE_INIT 0 #define __GTHREAD_MUTEX_INIT 0 #define __GTHREAD_MUTEX_INIT_FUNCTION rtems_gxx_mutex_init +#define __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION rtems_gxx_recursive_mutex_init /* Avoid dependency on rtems specific headers. */ typedef void *__gthread_key_t; typedef int __gthread_once_t; typedef void *__gthread_mutex_t; +typedef void *__gthread_recursive_mutex_t; /* * External functions provided by RTEMS. They are very similar to their POSIX @@ -64,6 +67,11 @@ extern int rtems_gxx_mutex_lock (__gthread_mutex_t *mutex); extern int rtems_gxx_mutex_trylock (__gthread_mutex_t *mutex); extern int rtems_gxx_mutex_unlock (__gthread_mutex_t *mutex); +/* recursive mutex support */ +extern void rtems_gxx_recursive_mutex_init (__gthread_recursive_mutex_t *mutex); +extern int rtems_gxx_recursive_mutex_lock (__gthread_recursive_mutex_t *mutex); +extern int rtems_gxx_recursive_mutex_trylock (__gthread_recursive_mutex_t *mutex); +extern int rtems_gxx_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex); /* RTEMS threading is always active */ static inline int @@ -121,6 +129,24 @@ __gthread_mutex_unlock (__gthread_mutex_t *mutex) return rtems_gxx_mutex_unlock( mutex ); } +static inline int +__gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *mutex) +{ + return rtems_gxx_recursive_mutex_lock (mutex); +} + +static inline int +__gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *mutex) +{ + return rtems_gxx_recursive_mutex_trylock (mutex); +} + +static inline int +__gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex) +{ + return rtems_gxx_recursive_mutex_unlock( mutex ); +} + #ifdef __cplusplus } #endif |