https://issues.apache.org/ooo/show_bug.cgi?id=120338
--- Comment #1 from Andre <[email protected]> --- The reason for the deadlock is the combination of office and presenter console running in two separate processes (thus no deadlock on second or later run: then the extension is run in the same process as the office) and the use of two threads for the presenter console. One thread is the "main" thread, the other is called from the timer that is used to update the display of current and elapsed time. The presenter console tries to call from both threads back into the office in the other process. The calls are routed via cppu, which uses a queue and a condition to process the calls. The condition for one call is never set thus the call is never made. The office in the first process waits for the call to be made which it isn't and thus hangs forever. -- You are receiving this mail because: You are on the CC list for the bug.
