forked from KolibriOS/kolibrios
[KERNEL] Graphics subsystem has been redesigned:
- removed the old cursor and the code for its operation - minor fixes in other kernel modules - new fields have been added to the display_t structure for further refactoring of the graphics subsystem. git-svn-id: svn://kolibrios.org@9941 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -709,16 +709,16 @@ proc new_sys_threads
|
||||
mov [slot], eax
|
||||
|
||||
mov esi, [current_slot]
|
||||
mov ebx, esi ;ebx=esi - pointer to extended information about current thread
|
||||
mov ebx, esi ;ebx=esi - pointer to information about current thread
|
||||
|
||||
mov edi, eax
|
||||
shl edi, BSF sizeof.APPDATA
|
||||
add edi, SLOT_BASE
|
||||
mov edx, edi ;edx=edi - pointer to extended infomation about new thread
|
||||
mov edx, edi ;edx=edi - pointer to infomation about new thread
|
||||
mov ecx, sizeof.APPDATA/4
|
||||
xor eax, eax
|
||||
cld
|
||||
rep stosd ;clean extended information about new thread
|
||||
rep stosd ;clean information about new thread
|
||||
mov esi, ebx
|
||||
mov edi, edx
|
||||
mov ecx, 11
|
||||
|
Reference in New Issue
Block a user