Computer Science Canada Stopping fork processes in turing 3.11 when clicking GUI |
Author: | templest [ Mon Oct 06, 2003 10:54 am ] |
Post subject: | Stopping fork processes in turing 3.11 when clicking GUI |
![]() ![]() ![]() ![]() |
Author: | rizzix [ Mon Oct 06, 2003 4:17 pm ] |
Post subject: | |
eh... why fork another process? create the window in the same process |
Author: | AsianSensation [ Mon Oct 06, 2003 4:54 pm ] |
Post subject: | |
return works for processes as well as procedures |
Author: | Tony [ Mon Oct 06, 2003 5:47 pm ] |
Post subject: | |
you can set a flag variable in the process and change its value when you want to quit. then right when the loop begins again in the process, you check the variable if you need to quit or not. |
Author: | templest [ Mon Oct 20, 2003 10:36 am ] |
Post subject: | |
Quote: you can set a flag variable in the process and change its value when you want to quit. then right when the loop begins again in the process, you check the variable if you need to quit or not.
Thanks. ![]() |