1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00
JUCE/modules/juce_events/timers
Anthony Nicholls 9b44fa750b Timer: Stop the timer thread on shutdown to prevent a potential hang on windows
This commit reverts commit: 9e9da250 as it introduced a regression.
On windows when exit is called on a dll it forcibly kills any threads
still running before destroying any static objects. This means if a
Timer object is static the timer thread will be killed. Later when the
static object is destroyed it will wait for the thread to exit, which
because the OS forcibly killed it will never come true.
2024-05-30 18:33:03 +01:00
..
juce_MultiTimer.cpp Update licensing information 2024-04-16 11:39:35 +01:00
juce_MultiTimer.h Update licensing information 2024-04-16 11:39:35 +01:00
juce_TimedCallback.h Update licensing information 2024-04-16 11:39:35 +01:00
juce_Timer.cpp Timer: Stop the timer thread on shutdown to prevent a potential hang on windows 2024-05-30 18:33:03 +01:00
juce_Timer.h Timer: Stop the timer thread on shutdown to prevent a potential hang on windows 2024-05-30 18:33:03 +01:00