openmedicus / gtk-sharp

DEPRECATED: Use https://github.com/GLibSharp/GtkSharp or https://github.com/GtkSharp/GtkSharp
Other
22 stars 6 forks source link

Application.Invoke leak still not fixed #27

Closed mrapplexz closed 7 years ago

mrapplexz commented 7 years ago
new Thread(() =>
                {
                    while (true)
                    {
                        Application.Invoke((s, ev) => { Console.WriteLine("test"); });
                    }
                }).Start();

This still causes a memory leak :/.

mrapplexz commented 7 years ago

Sorry, It's my fault.