Fix misapplied diff

(cherry picked from commit 0d318da7947dc690bf09689783344215c1fc3931)
This commit is contained in:
Paul Smedley
2014-08-24 20:29:36 +09:30
committed by Dmitriy Kuminov
parent e24a04b6fc
commit 5fcaeb2edd
2 changed files with 7 additions and 0 deletions

View File

@@ -184,6 +184,12 @@ __gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex)
return 0;
}
static inline int
__gthread_recursive_mutex_destroy (__gthread_recursive_mutex_t *__mutex)
{
return 0;
}
static inline int
__gthread_key_create (__gthread_key_t *key, void (*dtor) (void *))
{

View File

@@ -15420,6 +15420,7 @@ case $target_thread_file in
dce) thread_header=config/pa/gthr-dce.h ;;
lynx) thread_header=config/gthr-lynx.h ;;
mipssde) thread_header=config/mips/gthr-mipssde.h ;;
os2) thread_header=gthr-os2.h ;;
posix) thread_header=gthr-posix.h ;;
rtems) thread_header=config/gthr-rtems.h ;;
single) thread_header=gthr-single.h ;;