| 180 | } |
| 181 | |
| 182 | std::size_t CThreadManager::GetThreadFuncSize(LPBYTE lpFunc) |
| 183 | { |
| 184 | return 10; // temp |
| 185 | |
| 186 | #if 0 // FIXME |
| 187 | auto ulLength = std::size_t(0); |
| 188 | #ifdef _M_IX86 |
| 189 | auto dwStart = (DWORD)lpFunc; |
| 190 | while (*(DWORD *)dwStart != 0xAAAAAAAA) |
| 191 | { |
| 192 | dwStart++; |
| 193 | ulLength++; |
| 194 | } |
| 195 | #endif |
| 196 | return ulLength; |
| 197 | #endif |
| 198 | } |
| 199 | |
| 200 | const std::vector < std::shared_ptr <SSelfThreads> > & CThreadManager::GetThreadList() |
| 201 | { |
no outgoing calls
no test coverage detected