Searched refs:thread_functions (Results 1 - 1 of 1) sorted by relevance

/external/dbus/dbus/
H A Ddbus-threads.c28 static DBusThreadFunctions thread_functions = variable
70 if (thread_functions.recursive_mutex_new)
71 return (* thread_functions.recursive_mutex_new) ();
72 else if (thread_functions.mutex_new)
73 return (* thread_functions.mutex_new) ();
113 if (mutex && thread_functions.recursive_mutex_free)
114 (* thread_functions.recursive_mutex_free) (mutex);
115 else if (mutex && thread_functions.mutex_free)
116 (* thread_functions.mutex_free) (mutex);
147 if (thread_functions
[all...]

Completed in 151 milliseconds