mirror of
https://github.com/swaywm/sway.git
synced 2026-04-21 06:46:22 -04:00
Handle out-of-fd situations gracefully for transaction and urgent timers
This commit is contained in:
parent
a2164c6661
commit
32663b7b01
2 changed files with 16 additions and 3 deletions
|
|
@ -316,7 +316,14 @@ static void transaction_commit(struct sway_transaction *transaction) {
|
|||
// Set up a timer which the views must respond within
|
||||
transaction->timer = wl_event_loop_add_timer(server.wl_event_loop,
|
||||
handle_timeout, transaction);
|
||||
wl_event_source_timer_update(transaction->timer, txn_timeout_ms);
|
||||
if (transaction->timer) {
|
||||
wl_event_source_timer_update(transaction->timer, txn_timeout_ms);
|
||||
} else {
|
||||
wlr_log(WLR_ERROR, "Unable to create transaction timer. "
|
||||
"There might not be any available file descriptors. "
|
||||
"Some imperfect frames might be rendered.");
|
||||
handle_timeout(transaction);
|
||||
}
|
||||
}
|
||||
|
||||
// The debug tree shows the pending/live tree. Here is a good place to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue