Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 320 → Rev 321

/kernel/trunk/core/memory.inc
231,6 → 231,7
 
align 4
proc map_page stdcall,lin_addr:dword,phis_addr:dword,flags:dword
push ebx
mov eax, [phis_addr]
and eax, not 0xFFF
or eax, [flags]
239,6 → 240,7
mov [pages_tab+ebx*4], eax
mov eax, [lin_addr]
invlpg [eax]
pop ebx
ret
endp
 
290,7 → 292,7
align 4
release_pages:
push ebp
pushad
mov ebx, pg_data.pg_mutex
call wait_mutex ;ebx
 
329,11 → 331,12
jnz @B
mov [pg_data.pages_free], ebp
and [pg_data.pg_mutex],0
pop ebp
popad
ret
 
align 4
proc map_page_table stdcall, lin_addr:dword, phis_addr:dword
push ebx
mov ebx, [lin_addr]
shr ebx, 22
mov eax, [phis_addr]
344,6 → 347,7
shr eax, 10
add eax, pages_tab
invlpg [eax]
pop ebx
ret
endp