| 288 | } |
| 289 | |
| 290 | std::string CThread::GetThreadOwnerFileName() |
| 291 | { |
| 292 | auto szFullName = GetThreadOwnerFullName(); |
| 293 | if (szFullName.empty()) |
| 294 | return std::string(""); |
| 295 | |
| 296 | auto szFileName = g_nmApp->DirFunctionsInstance()->GetNameFromPath(szFullName); |
| 297 | if (szFileName.empty()) |
| 298 | return std::string(""); |
| 299 | |
| 300 | return szFileName; |
| 301 | } |
| 302 | |
| 303 | std::shared_ptr <CONTEXT> CThread::GetContext() |
| 304 | { |
nothing calls this directly
no test coverage detected