summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorstanton <stanton>1999-02-04 21:43:14 (GMT)
committerstanton <stanton>1999-02-04 21:43:14 (GMT)
commit3f9d3af6d7fabca7bed61dd63c80bfd3d4f584f3 (patch)
tree84fa7261aeafd5a2fc0fec0d7f5c8fd4825dc678 /generic
parentf7d88f2403e9144722ecc14a8521c296e5baa3d2 (diff)
downloadtk-3f9d3af6d7fabca7bed61dd63c80bfd3d4f584f3.zip
tk-3f9d3af6d7fabca7bed61dd63c80bfd3d4f584f3.tar.gz
tk-3f9d3af6d7fabca7bed61dd63c80bfd3d4f584f3.tar.bz2
* generic/tkImgPhoto.c: Changed so color tables are freed
immediately instead of being delayed. This ensures that color tables are properly disposed at process exit.
Diffstat (limited to 'generic')
-rw-r--r--generic/tkImgPhoto.c22
1 files changed, 15 insertions, 7 deletions
diff --git a/generic/tkImgPhoto.c b/generic/tkImgPhoto.c
index c4d1768..6ae07f6 100644
--- a/generic/tkImgPhoto.c
+++ b/generic/tkImgPhoto.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkImgPhoto.c,v 1.3 1998/09/30 19:01:20 rjohnson Exp $
+ * RCS: @(#) $Id: tkImgPhoto.c,v 1.4 1999/02/04 21:43:14 stanton Exp $
*/
#include "tkInt.h"
@@ -357,7 +357,8 @@ static int IsValidPalette _ANSI_ARGS_((PhotoInstance *instancePtr,
char *palette));
static int CountBits _ANSI_ARGS_((pixel mask));
static void GetColorTable _ANSI_ARGS_((PhotoInstance *instancePtr));
-static void FreeColorTable _ANSI_ARGS_((ColorTable *colorPtr));
+static void FreeColorTable _ANSI_ARGS_((ColorTable *colorPtr,
+ int force));
static void AllocateColors _ANSI_ARGS_((ColorTable *colorPtr));
static void DisposeColorTable _ANSI_ARGS_((ClientData clientData));
static void DisposeInstance _ANSI_ARGS_((ClientData clientData));
@@ -1482,7 +1483,7 @@ ImgPhotoConfigureInstance(instancePtr)
if (colorTablePtr != NULL) {
colorTablePtr->liveRefCount -= 1;
- FreeColorTable(colorTablePtr);
+ FreeColorTable(colorTablePtr, 0);
}
GetColorTable(instancePtr);
@@ -1642,7 +1643,7 @@ ImgPhotoGet(tkwin, masterData)
Tcl_CancelIdleCall(DisposeInstance, (ClientData) instancePtr);
if (instancePtr->colorTablePtr != NULL) {
- FreeColorTable(instancePtr->colorTablePtr);
+ FreeColorTable(instancePtr->colorTablePtr, 0);
}
GetColorTable(instancePtr);
}
@@ -2480,15 +2481,22 @@ GetColorTable(instancePtr)
*/
static void
-FreeColorTable(colorPtr)
+FreeColorTable(colorPtr, force)
ColorTable *colorPtr; /* Pointer to the color table which is
* no longer required by an instance. */
+ int force; /* Force free to happen immediately. */
{
colorPtr->refCount--;
if (colorPtr->refCount > 0) {
return;
}
- if ((colorPtr->flags & DISPOSE_PENDING) == 0) {
+ if (force) {
+ if ((colorPtr->flags & DISPOSE_PENDING) != 0) {
+ Tcl_CancelIdleCall(DisposeColorTable, (ClientData) colorPtr);
+ colorPtr->flags &= ~DISPOSE_PENDING;
+ }
+ DisposeColorTable((ClientData) colorPtr);
+ } else if ((colorPtr->flags & DISPOSE_PENDING) == 0) {
Tcl_DoWhenIdle(DisposeColorTable, (ClientData) colorPtr);
colorPtr->flags |= DISPOSE_PENDING;
}
@@ -2954,7 +2962,7 @@ DisposeInstance(clientData)
ckfree((char *) instancePtr->error);
}
if (instancePtr->colorTablePtr != NULL) {
- FreeColorTable(instancePtr->colorTablePtr);
+ FreeColorTable(instancePtr->colorTablePtr, 1);
}
if (instancePtr->masterPtr->instancePtr == instancePtr) {