| 182 | } |
| 183 | |
| 184 | BlContext::~BlContext() |
| 185 | { |
| 186 | if (mCodeView != NULL) |
| 187 | { |
| 188 | mCodeView->StopWorkThreads(); |
| 189 | delete mCodeView; |
| 190 | } |
| 191 | |
| 192 | #ifdef BL_PERFTIME |
| 193 | if (gPerfManager->IsRecording()) |
| 194 | { |
| 195 | gPerfManager->StopRecording(true); |
| 196 | } |
| 197 | #endif |
| 198 | } |
| 199 | |
| 200 | BlSymHash BlContext::Hash(const char* symName) |
| 201 | { |
nothing calls this directly
no test coverage detected