GeekJosh / BertUI

A 10-foot UI for Windows
GNU General Public License v2.0
1 stars 0 forks source link

Crashes when launched app runs for a long time (approx 1 hour) #1

Closed GeekJosh closed 10 years ago

GeekJosh commented 10 years ago

BertUI is crashing if an app launched from it is left to run for a long time (roughly one hour). I believe this has to do with Process.WaitForExit() being a blocking function, so will break this out in to a loop to prevent the GUI from becoming unresponsive

GeekJosh commented 10 years ago

Issue resolved: backgroundWorker used for gamepad monitoring was not thread safe; now using a System.Timers.Timer instead with thread safe calling.