wayland: Reset the intterupted flag before breaking from run_forever

This is important for any code that re-enters `run_forever` after some
previous interrupt.
This commit is contained in:
mitchmindtree 2017-05-25 00:11:32 +10:00
parent 7298df74bc
commit 1523548d3e

View file

@ -193,7 +193,13 @@ impl EventsLoop {
let static_cb = unsafe { ::std::mem::transmute(Box::new(callback) as Box<FnMut(_)>) }; let static_cb = unsafe { ::std::mem::transmute(Box::new(callback) as Box<FnMut(_)>) };
let old_cb = unsafe { self.sink.lock().unwrap().set_callback(static_cb) }; let old_cb = unsafe { self.sink.lock().unwrap().set_callback(static_cb) };
while !self.interrupted.load(::std::sync::atomic::Ordering::Relaxed) { loop {
// If `interrupt` was called, break from the loop after resetting the flag.
if self.interrupted.load(::std::sync::atomic::Ordering::Relaxed) {
self.interrupted.store(false, ::std::sync::atomic::Ordering::Relaxed);
break;
}
self.ctxt.dispatch(); self.ctxt.dispatch();
evq_guard.dispatch_pending().expect("Wayland connection unexpectedly lost"); evq_guard.dispatch_pending().expect("Wayland connection unexpectedly lost");
let ids_guard = self.decorated_ids.lock().unwrap(); let ids_guard = self.decorated_ids.lock().unwrap();