1
0
Fork 0

Remove LastStatus from THREADALLINFO to preserve plugin compatibility

This commit is contained in:
Mattiwatti 2017-10-22 23:21:25 +02:00 committed by Duncan Ogilvie
parent cc542968f8
commit 8c9b11ecc9
1 changed files with 0 additions and 1 deletions

View File

@ -129,7 +129,6 @@ void ThreadGetList(THREADLIST* List)
List->list[index].SuspendCount = ThreadGetSuspendCount(threadHandle);
List->list[index].Priority = ThreadGetPriority(threadHandle);
List->list[index].LastError = ThreadGetLastErrorTEB(itr.second.ThreadLocalBase);
List->list[index].LastStatus = ThreadGetLastStatusTEB(itr.second.ThreadLocalBase);
GetThreadTimes(threadHandle, &List->list[index].CreationTime, &threadExitTime, &List->list[index].KernelTime, &List->list[index].UserTime);
List->list[index].Cycles = ThreadQueryCycleTime(threadHandle);
index++;