| 2527 | |
| 2528 | |
| 2529 | void Function::ReleaseAdvancedAnalysisData() |
| 2530 | { |
| 2531 | BNReleaseAdvancedFunctionAnalysisData(m_object); |
| 2532 | #ifdef WIN32 |
| 2533 | InterlockedDecrement((LONG*)&m_advancedAnalysisRequests); |
| 2534 | #else |
| 2535 | __sync_fetch_and_add(&m_advancedAnalysisRequests, -1); |
| 2536 | #endif |
| 2537 | } |
| 2538 | |
| 2539 | |
| 2540 | map<string, double> Function::GetAnalysisPerformanceInfo() |
no outgoing calls
no test coverage detected