| 82 | } |
| 83 | |
| 84 | void ReadThreadProc3() |
| 85 | { |
| 86 | while (1) |
| 87 | { |
| 88 | ULONGLONG tick = GetTickCount64(); |
| 89 | //m.lock(); |
| 90 | printf("Thread3 ReadTime %llu ms Data:%llx\n", GetTickCount64() - tick, *(DWORD64*)hidemem); |
| 91 | //m.unlock(); |
| 92 | Sleep(100); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | |
| 97 | int main() |
nothing calls this directly
no outgoing calls
no test coverage detected