| 139 | } |
| 140 | |
| 141 | void AsyncDeviceToken::m_connectionInteract() { |
| 142 | m_ensureThreadStarted(); |
| 143 | OSVR_DEV_VERBOSE("AsyncDeviceToken::m_connectionInteract\t" |
| 144 | "Going to send a CTS if waiting"); |
| 145 | bool handled = m_accessControl.mainThreadCTS(); |
| 146 | if (handled) { |
| 147 | OSVR_DEV_VERBOSE("AsyncDeviceToken::m_connectionInteract\t" |
| 148 | "Handled an RTS!"); |
| 149 | } else { |
| 150 | OSVR_DEV_VERBOSE("AsyncDeviceToken::m_connectionInteract\t" |
| 151 | "No waiting RTS!"); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | void AsyncDeviceToken::m_stopThreads() { signalAndWaitForShutdown(); } |
| 156 |
nothing calls this directly
no test coverage detected