From 390d9aa3a7bcb4737c0bfa5bbeff1b2320b1ffd9 Mon Sep 17 00:00:00 2001 From: "Evgeny Grechnikov (Diamond)" Date: Sat, 7 Jul 2007 11:42:26 +0000 Subject: [PATCH] first call to sysfn 0 activates window git-svn-id: svn://kolibrios.org@569 a494cfbc-eb01-0410-851d-a64ba20cac60 --- kernel/trunk/core/taskman.inc | 27 ++++++--------------------- kernel/trunk/kernel.asm | 15 +++++++++------ 2 files changed, 15 insertions(+), 27 deletions(-) diff --git a/kernel/trunk/core/taskman.inc b/kernel/trunk/core/taskman.inc index 4b6f1b9796..67be049407 100644 --- a/kernel/trunk/core/taskman.inc +++ b/kernel/trunk/core/taskman.inc @@ -1090,32 +1090,18 @@ proc set_app_params stdcall,slot:dword, params:dword,\ lea ecx, [ebx+REG_RET] mov ebx, [slot] - shl ebx, 8 - mov [ebx+SLOT_BASE+APPDATA.saved_esp], ecx + shl ebx, 5 + mov [ebx*8+SLOT_BASE+APPDATA.saved_esp], ecx -;flush keyboard and buttons queue - mov [KEY_COUNT],byte 0 - mov [BTN_COUNT],byte 0 - - mov edi,[slot] - shl edi,5 - add edi,window_data - mov ebx,[slot] - movzx esi,word [WIN_STACK+ebx*2] - lea esi,[WIN_POS+esi*2] - call windowactivate ;gui initialization - - mov ebx,[slot] - shl ebx,5 - mov [CURRENT_TASK+ebx+0xa],byte 0 ;set process state - running + xor ecx, ecx ; process state - running ; set if debuggee - mov eax, [flags] test byte [flags], 1 jz .no_debug - mov [CURRENT_TASK+ebx+0xa],byte 1 ;set process state - suspended + inc ecx ; process state - suspended mov eax,[CURRENT_TASK] - mov [SLOT_BASE+ebx*8+0xac],eax ;set debugger PID - current + mov [SLOT_BASE+ebx*8+APPDATA.debugger_slot],eax .no_debug: + mov [CURRENT_TASK+ebx+TASKDATA.state], cl ;mov esi,new_process_running ;call sys_msg_board_str ;output information about succefull startup DEBUGF 1,"%s",new_process_running @@ -1123,4 +1109,3 @@ proc set_app_params stdcall,slot:dword, params:dword,\ endp include "debug.inc" - diff --git a/kernel/trunk/kernel.asm b/kernel/trunk/kernel.asm index 8d1693ef27..c36e222cf4 100644 --- a/kernel/trunk/kernel.asm +++ b/kernel/trunk/kernel.asm @@ -2963,7 +2963,10 @@ sys_drawwindow: jne nosyswV draw_skin_window: - ; parameter for drawwindow_IV + inc [mouse_pause] + call [disable_mouse] + call sys_set_window + call [disable_mouse] push 0 mov edi, [TASK_COUNT] movzx edi, word [WIN_POS + edi*2] @@ -2971,11 +2974,6 @@ sys_drawwindow: jne @f inc dword [esp] @@: - - inc [mouse_pause] - call [disable_mouse] - call sys_set_window - call [disable_mouse] call drawwindow_IV ;dec [mouse_pause] ;call [draw_pointer] @@ -3216,6 +3214,11 @@ sys_set_window: movsd pop edi esi ecx + mov esi, [CURRENT_TASK] + movzx esi, word [WIN_STACK+esi*2] + lea esi, [WIN_POS+esi*2] + call waredraw + push eax ebx ecx edx ;;; mov eax, 1 ;;; call delay_hs