Closed cwiede closed 3 years ago
It occurred with the filter chain
[readerthread] -> [guithread] -> [compute thread (high load)] -> [compute thread] -> [gui thread]
The application deadlock'ed with stalled gui. Changing it to
[readerthread] -> [compute thread] -> [compute thread (high load)] -> [compute thread] -> [gui thread]
fixed the issue.
It occurred with the filter chain
[readerthread] -> [guithread] -> [compute thread (high load)] -> [compute thread] -> [gui thread]
The application deadlock'ed with stalled gui. Changing it to
[readerthread] -> [compute thread] -> [compute thread (high load)] -> [compute thread] -> [gui thread]
fixed the issue.