aboutsummaryrefslogtreecommitdiff
path: root/gcc/gthr-single.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gthr-single.h')
-rw-r--r--gcc/gthr-single.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/gthr-single.h b/gcc/gthr-single.h
index c3a903d..56fd3a7 100644
--- a/gcc/gthr-single.h
+++ b/gcc/gthr-single.h
@@ -251,6 +251,25 @@ __gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex)
return __gthread_mutex_unlock (mutex);
}
+static inline int
+__gthread_cond_broadcast (__gthread_cond_t cond)
+{
+ return 0;
+}
+
+static inline int
+__gthread_cond_wait (__gthread_cond_t cond, __gthread_mutex_t *mutex)
+{
+ return 0;
+}
+
+static inline int
+__gthread_cond_wait_recursive (__gthread_cond_t cond,
+ __gthread_recursive_mutex_t *mutex)
+{
+ return 0;
+}
+
#endif /* _LIBOBJC */
#undef UNUSED