1 --- libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h.threading 2017-02-15 13:40:53.796004263 +0000
2 +++ libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h 2017-02-15 13:40:46.907000493 +0000
4 /* classes for multithreading support
12 typedef bool (*CondVarWaitTimeoutFn)(CondVar *cv, Mutex *mx, int timeout);
13 typedef void (*CondVarWakeOneFn)(CondVar *cv);
14 typedef void (*CondVarWakeAllFn)(CondVar *cv);
17 void DXXAPI _init_threading();
20 void DXXAPI _init_threading(
21 MutexNewFn, MutexFreeFn, MutexLockFn, MutexUnlockFn,
22 CondVarNewFn, CondVarFreeFn, CondVarWaitFn, CondVarWaitTimeoutFn, CondVarWakeOneFn, CondVarWakeAllFn
29 } /* namespace DBus */
31 --- libdbus-c++-0.9.0/src/dispatcher.cpp.threading 2017-02-15 13:48:22.627249868 +0000
32 +++ libdbus-c++-0.9.0/src/dispatcher.cpp 2017-02-15 13:48:29.164253445 +0000
34 #endif//DBUS_HAS_THREADS_INIT_DEFAULT
38 void DBus::_init_threading(
42 #endif//DBUS_HAS_RECURSIVE_MUTEX
43 dbus_threads_init(&functions);