On long-long running programs uses libtk8.6 ( tkinter for example ) they start eating memory, CPU and degrade to death. Seems int to unsigned long internal conversion problem.
Explicit change in package http://archive.ubuntu.com/ubuntu/pool/main/t/tk8.6/tk8.6_8.6.10.orig.tar.gz tk8.6.10/generic/tkError.c 145: void Tk_DeleteErrorHandler( Tk_ErrorHandler handler) change 171: int lastSerial = LastKnownRequestProcessed(dispPtr->display); to 171: unsigned long lastSerial = LastKnownRequestProcessed(dispPtr->display); Thank You!
-- Ubuntu-devel-discuss mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss
