Using the new mutex to r.2486

git-svn-id: svn://kolibrios.org@2489 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Marat Zakiyanov (Mario79) 2012-03-21 22:48:54 +00:00
parent a8e40b5de4
commit 36115aba3f
2 changed files with 8 additions and 16 deletions

View File

@ -438,23 +438,12 @@ proc load_file stdcall, file_name:dword
mov [file2], eax
push eax
.wait_lock:
cmp [unpack_mutex], 0
je .get_lock
call change_task
jmp .wait_lock
.get_lock:
mov eax, 1
xchg eax, [unpack_mutex]
test eax, eax
jnz .wait_lock
pop eax
mov ecx, unpack_mutex
call mutex_lock
stdcall unpack, [file], eax
mov [unpack_mutex], 0
call mutex_unlock
stdcall kernel_free, [file]
mov eax, [file2]
@ -485,9 +474,9 @@ proc load_file stdcall, file_name:dword
ret
endp
iglobal
uglobal
align 4
unpack_mutex dd 0
unpack_mutex MUTEX
endg
align 4

View File

@ -332,6 +332,9 @@ high_code:
mov ecx, disk_list_mutex
call mutex_init
mov ecx, unpack_mutex
call mutex_init
; SAVE REAL MODE VARIABLES
mov ax, [BOOT_VAR + BOOT_IDE_BASE_ADDR]
mov [IDEContrRegsBaseAddr], ax