diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-20 22:19:57 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-20 22:19:57 +0000 |
commit | 1d384e02860fdf65238ac403edd83d2e9fb6419c (patch) | |
tree | 9afa7715f4cc4ab022334aa33a417f2d1756b2ec /libgcc | |
parent | 168d2274c6ffe28d5cd5f6dfacca5ba40d456830 (diff) | |
download | gcc-1d384e02860fdf65238ac403edd83d2e9fb6419c.tar.gz |
* gthr.h (__gthread_cond_timedwait_recursive): Do not require.
* gthr-posix.h (__gthread_cond_timedwait_recursive): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194652 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/gthr-posix.h | 8 | ||||
-rw-r--r-- | libgcc/gthr.h | 3 |
3 files changed, 5 insertions, 11 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index df3dfeef71f..fb9a454ea7a 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2012-12-20 Jonathan Wakely <jwakely.gcc@gmail.com> + + * gthr.h (__gthread_cond_timedwait_recursive): Do not require. + * gthr-posix.h (__gthread_cond_timedwait_recursive): Remove. + 2012-12-13 John Tytgat <John@bass-software.com> * config/arm/fp16.c (__gnu_f2h_internal): Fix inaccuracy when aexp diff --git a/libgcc/gthr-posix.h b/libgcc/gthr-posix.h index 1e7ddfeb2f4..d3570143f74 100644 --- a/libgcc/gthr-posix.h +++ b/libgcc/gthr-posix.h @@ -880,14 +880,6 @@ __gthread_cond_wait_recursive (__gthread_cond_t *__cond, } 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) { return __gthrw_(pthread_cond_destroy) (__cond); diff --git a/libgcc/gthr.h b/libgcc/gthr.h index 9f2b53d2368..36804b005d0 100644 --- a/libgcc/gthr.h +++ b/libgcc/gthr.h @@ -129,9 +129,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see int __gthread_cond_timedwait (__gthread_cond_t *cond, __gthread_mutex_t *mutex, const __gthread_time_t *abs_timeout); - int __gthread_cond_timedwait_recursive (__gthread_cond_t *cond, - __gthread_recursive_mutex_t *mutex, - const __gthread_time_t *abs_time) */ |