Searched refs:thread_functions (Results 1 – 1 of 1) sorted by relevance
28 static DBusThreadFunctions thread_functions = variable70 if (thread_functions.recursive_mutex_new) in _dbus_mutex_new()71 return (* thread_functions.recursive_mutex_new) (); in _dbus_mutex_new()72 else if (thread_functions.mutex_new) in _dbus_mutex_new()73 return (* thread_functions.mutex_new) (); in _dbus_mutex_new()113 if (mutex && thread_functions.recursive_mutex_free) in _dbus_mutex_free()114 (* thread_functions.recursive_mutex_free) (mutex); in _dbus_mutex_free()115 else if (mutex && thread_functions.mutex_free) in _dbus_mutex_free()116 (* thread_functions.mutex_free) (mutex); in _dbus_mutex_free()147 if (thread_functions.recursive_mutex_lock) in _dbus_mutex_lock()[all …]