forked from KolibriOS/kolibrios
fix cpu_usage
git-svn-id: svn://kolibrios.org@9591 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
bb2c454ebe
commit
3d6209fb37
@ -76,15 +76,16 @@ update_counters:
|
||||
align 4
|
||||
updatecputimes:
|
||||
mov ecx, [thread_count]
|
||||
;mov edi, TASK_DATA
|
||||
mov edi, SLOT_BASE
|
||||
mov edi, TASK_DATA
|
||||
;mov dword[edi+TASKDATA.cpu_usage], 0
|
||||
mov esi, SLOT_BASE
|
||||
.newupdate:
|
||||
xor eax, eax
|
||||
xchg eax, [edi+TASKDATA.counter_sum]
|
||||
;mov [edi+TASKDATA.cpu_usage], eax
|
||||
;add edi, 0x20
|
||||
mov [edi+APPDATA.cpu_usage], eax
|
||||
add edi, 0x100 ;sizeof.APPDATA
|
||||
add edi, 0x20
|
||||
mov [esi+APPDATA.cpu_usage], eax
|
||||
add esi, 0x100 ;sizeof.APPDATA
|
||||
loop .newupdate
|
||||
ret
|
||||
|
||||
|
@ -2629,12 +2629,13 @@ sys_cpuusage:
|
||||
mov [ebx], eax
|
||||
; +10: 11 bytes: name of the process
|
||||
push ecx
|
||||
lea eax, [ecx*8+SLOT_BASE+APPDATA.app_name]
|
||||
lea eax, [ecx+SLOT_BASE+APPDATA.app_name]
|
||||
add ebx, 10
|
||||
mov ecx, 11
|
||||
call memmove
|
||||
pop ecx
|
||||
|
||||
shr ecx, 3
|
||||
; +22: address of the process in memory
|
||||
; +26: size of used memory - 1
|
||||
push edi
|
||||
|
Loading…
Reference in New Issue
Block a user