[INTERPRETER]
* BUG: Disable the component specific event loop when starting a task. No way that any GUI works in a background task now, but I can't disable it automatically. git-svn-id: svn://localhost/gambas/trunk@5107 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
1a059ea685
commit
505cd02a5f
1 changed files with 7 additions and 0 deletions
|
@ -74,6 +74,13 @@ static void has_forked(void)
|
|||
EXEC_debug = FALSE;
|
||||
EXEC_task = TRUE;
|
||||
|
||||
EXEC_Hook.loop = NULL;
|
||||
EXEC_Hook.wait = NULL;
|
||||
EXEC_Hook.timer = NULL;
|
||||
EXEC_Hook.watch = NULL;
|
||||
EXEC_Hook.post = NULL;
|
||||
//EXEC_Hook.quit = NULL;
|
||||
|
||||
task = _task_list;
|
||||
while (task)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue