summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-threads-internal.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2006-10-27 01:09:24 +0000
committerHavoc Pennington <hp@redhat.com>2006-10-27 01:09:24 +0000
commit5886f5326da2dbe8f1a7c97736d544fa4cef169b (patch)
treedc67158b953aa57605d18ea43f1cd9f916d82716 /dbus/dbus-threads-internal.h
parentcaae991f97ce1b09595d3229f2868268678b8de6 (diff)
2006-10-26 Havoc Pennington <hp@redhat.com>
* dbus/dbus-threads.[hc]: Documentation improvements. Clarify how condition variables relate to recursive mutexes. * dbus/dbus-sysdeps-pthread.c, dbus/dbus-sysdeps-win-thread.c, dbus/dbus-threads.c: Split the platforms-specific thread implementations into their own files. * dbus/dbus-sysdeps-pthread.c (_dbus_pthread_condvar_wait_timeout): invert the return value, it was backward. Not that anything uses it.
Diffstat (limited to 'dbus/dbus-threads-internal.h')
-rw-r--r--dbus/dbus-threads-internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbus/dbus-threads-internal.h b/dbus/dbus-threads-internal.h
index 8f26bca1..ed30df65 100644
--- a/dbus/dbus-threads-internal.h
+++ b/dbus/dbus-threads-internal.h
@@ -43,10 +43,10 @@ void _dbus_condvar_wait (DBusCondVar *cond,
dbus_bool_t _dbus_condvar_wait_timeout (DBusCondVar *cond,
DBusMutex *mutex,
int timeout_milliseconds);
-void _dbus_condvar_wake_one (DBusCondVar *cond);
-void _dbus_condvar_wake_all (DBusCondVar *cond);
-void _dbus_condvar_new_at_location (DBusCondVar **location_p);
-void _dbus_condvar_free_at_location (DBusCondVar **location_p);
+void _dbus_condvar_wake_one (DBusCondVar *cond);
+void _dbus_condvar_wake_all (DBusCondVar *cond);
+void _dbus_condvar_new_at_location (DBusCondVar **location_p);
+void _dbus_condvar_free_at_location (DBusCondVar **location_p);
DBUS_END_DECLS