Re: RFR: 8231372: Correctly terminate secondary event loop in JFXPanel.setScene()

2019-11-13 Thread Kevin Rushforth
On Mon, 21 Oct 2019 22:52:47 GMT, Kevin Rushforth wrote: > On Thu, 17 Oct 2019 15:28:31 GMT, Kevin Rushforth wrote: > >> On Thu, 17 Oct 2019 15:28:30 GMT, mruzicka >> wrote: >> >>> On Thu, 17 Oct 2019 15:28:28 GMT, mruzicka >>> wrote: >>> Secondary event loop introduced as a means

Re: RFR: 8231372: Correctly terminate secondary event loop in JFXPanel.setScene()

2019-10-21 Thread Kevin Rushforth
On Thu, 17 Oct 2019 15:28:31 GMT, Kevin Rushforth wrote: > On Thu, 17 Oct 2019 15:28:30 GMT, mruzicka > wrote: > >> On Thu, 17 Oct 2019 15:28:28 GMT, mruzicka >> wrote: >> >>> Secondary event loop introduced as a means of synchronization with the >>> JavaFX Application thread in [1] never

Re: RFR: 8231372: Correctly terminate secondary event loop in JFXPanel.setScene()

2019-10-17 Thread Kevin Rushforth
On Thu, 17 Oct 2019 15:28:30 GMT, mruzicka wrote: > On Thu, 17 Oct 2019 15:28:28 GMT, mruzicka > wrote: > >> Secondary event loop introduced as a means of synchronization with the >> JavaFX Application thread in [1] never terminates as the >> SecondaryLoop.exit() call is not reached

Re: RFR: 8231372: Correctly terminate secondary event loop in JFXPanel.setScene()

2019-10-17 Thread mruzicka
On Thu, 17 Oct 2019 15:28:28 GMT, mruzicka wrote: > Secondary event loop introduced as a means of synchronization with the JavaFX > Application thread in [1] never terminates as the SecondaryLoop.exit() call > is not reached because the thread is blocked in the SecondaryLoop.enter() > call.