| 238 | m_pDatabase->UnlockFromFullAtomicOperation(); |
| 239 | } |
| 240 | void CancelThinkPart() |
| 241 | { |
| 242 | if (!m_pFunction->IsRunnable()) |
| 243 | return; |
| 244 | |
| 245 | m_pFunction->PushCell(BAD_HANDLE); |
| 246 | m_pFunction->PushCell(BAD_HANDLE); |
| 247 | m_pFunction->PushString("Driver is unloading"); |
| 248 | m_pFunction->PushCell(m_Data); |
| 249 | m_pFunction->Execute(NULL); |
| 250 | } |
| 251 | void RunThinkPart() |
| 252 | { |
| 253 | /* Create a Handle for our query */ |
no test coverage detected