| 79 | Thread.unlock(); |
| 80 | } |
| 81 | void UnregisterCallResult(CCallbackBase* result, uint64_t call) |
| 82 | { |
| 83 | // Remove the callresult handler based on the ID. |
| 84 | Thread.lock(); |
| 85 | ResultHandlersBuffers.erase(call); |
| 86 | Thread.unlock(); |
| 87 | } |
| 88 | uint64_t RegisterCall(bool MarkActive) |
| 89 | { |
| 90 | // Return a new callresult id and set the status. |
no outgoing calls
no test coverage detected