| 70 | } |
| 71 | |
| 72 | void ReadThreadProc2() |
| 73 | { |
| 74 | while (1) |
| 75 | { |
| 76 | ULONGLONG tick = GetTickCount64(); |
| 77 | //m.lock(); |
| 78 | printf("Thread2 ReadTime %llu ms Data:%llx\n", GetTickCount64() - tick, *(DWORD64*)hidemem); |
| 79 | //m.unlock(); |
| 80 | Sleep(100); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | void ReadThreadProc3() |
| 85 | { |
nothing calls this directly
no outgoing calls
no test coverage detected