summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXCarbonEvents.c
diff options
context:
space:
mode:
authordas <das>2006-08-21 01:09:32 (GMT)
committerdas <das>2006-08-21 01:09:32 (GMT)
commit9fc67ae4ed781c5e2f2ae2bb678651e83ff7294e (patch)
tree4f0e3c32595604e065d4aed8477c24fabfcacf83 /macosx/tkMacOSXCarbonEvents.c
parentdc316587c0b9053c09dfb532523bcdfd73169adc (diff)
downloadtk-9fc67ae4ed781c5e2f2ae2bb678651e83ff7294e.zip
tk-9fc67ae4ed781c5e2f2ae2bb678651e83ff7294e.tar.gz
tk-9fc67ae4ed781c5e2f2ae2bb678651e83ff7294e.tar.bz2
* macosx/tkMacOSXCarbonEvents.c (CarbonTimerProc): avoid starving main
event loop: limit the number of tcl events processed per invocation. Fixes bug reported on tcl-mac by Kevan Hashemi.
Diffstat (limited to 'macosx/tkMacOSXCarbonEvents.c')
-rw-r--r--macosx/tkMacOSXCarbonEvents.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/macosx/tkMacOSXCarbonEvents.c b/macosx/tkMacOSXCarbonEvents.c
index d155725..76bfa8d 100644
--- a/macosx/tkMacOSXCarbonEvents.c
+++ b/macosx/tkMacOSXCarbonEvents.c
@@ -60,7 +60,7 @@
* software in accordance with the terms specified in this
* license.
*
- * RCS: @(#) $Id: tkMacOSXCarbonEvents.c,v 1.3.2.13 2006/04/28 06:02:58 das Exp $
+ * RCS: @(#) $Id: tkMacOSXCarbonEvents.c,v 1.3.2.14 2006/08/21 01:09:32 das Exp $
*/
#include "tkMacOSXInt.h"
@@ -379,11 +379,15 @@ CarbonTimerProc (
EventLoopTimerRef timer,
void *userData)
{
- while(carbonTimerEnabled && Tcl_DoOneEvent(
- TCL_FILE_EVENTS|TCL_TIMER_EVENTS|TCL_DONT_WAIT)) {
+ if(carbonTimerEnabled) {
+ /* Avoid starving main event loop: process at most 4 events. */
+ int i = 4;
+ while(--i && Tcl_DoOneEvent(
+ TCL_FILE_EVENTS|TCL_TIMER_EVENTS|TCL_DONT_WAIT)) {
#if defined(TK_MAC_DEBUG) && defined(TK_MAC_DEBUG_CARBON_EVENTS)
- fprintf(stderr, "Processed tcl event from carbon timer\n");
+ fprintf(stderr, "Processed tcl event from carbon timer\n");
#endif /* TK_MAC_DEBUG_CARBON_EVENTS */
+ }
}
}