Community
Participate
Working Groups
In the TimeChartView DecorateThread private class, a TmfContext is created for small amounts of work. When possible the context is reused, but in some cases the context is replaced and the old context is left for garbage collection. In some extensions, the TmfContext can own limited system resources such as a file descriptor. If the DecorateThread uses too many context in a short time, the system can run out of file descriptors before the garbage collector has time to dispose of the context. The solution is to dispose the old context whenever it is replaced by a new one, and dispose the last context at the end of the thread execution.
Pushed to master branch. commit bec90af73a494aceeb17256235b847b9d851480f
Delivered in 0.10.0