aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-28 10:00:04 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-28 22:40:43 +1000
commitd6daf10cad540f7581e9a325a041333d1113cae5 (patch)
tree694893ade47cc0aaf93c1312260f468965bca4d4
parentHandle out-of-fd situations gracefully for transaction and urgent timers (diff)
downloadsway-d6daf10cad540f7581e9a325a041333d1113cae5.tar.gz
sway-d6daf10cad540f7581e9a325a041333d1113cae5.tar.zst
sway-d6daf10cad540f7581e9a325a041333d1113cae5.zip
Show errno description in log
-rw-r--r--sway/desktop/transaction.c6
-rw-r--r--sway/input/seat.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c
index a9c9cb58..17e3f467 100644
--- a/sway/desktop/transaction.c
+++ b/sway/desktop/transaction.c
@@ -319,9 +319,9 @@ static void transaction_commit(struct sway_transaction *transaction) {
319 if (transaction->timer) { 319 if (transaction->timer) {
320 wl_event_source_timer_update(transaction->timer, txn_timeout_ms); 320 wl_event_source_timer_update(transaction->timer, txn_timeout_ms);
321 } else { 321 } else {
322 wlr_log(WLR_ERROR, "Unable to create transaction timer. " 322 wlr_log(WLR_ERROR, "Unable to create transaction timer (%s). "
323 "There might not be any available file descriptors. " 323 "Some imperfect frames might be rendered.",
324 "Some imperfect frames might be rendered."); 324 strerror(errno));
325 handle_timeout(transaction); 325 handle_timeout(transaction);
326 } 326 }
327 } 327 }
diff --git a/sway/input/seat.c b/sway/input/seat.c
index ab07c03c..ce2e0936 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -700,8 +700,8 @@ void seat_set_focus_warp(struct sway_seat *seat,
700 wl_event_source_timer_update(view->urgent_timer, 700 wl_event_source_timer_update(view->urgent_timer,
701 config->urgent_timeout); 701 config->urgent_timeout);
702 } else { 702 } else {
703 wlr_log(WLR_ERROR, "Unable to create urgency timer. " 703 wlr_log(WLR_ERROR, "Unable to create urgency timer (%s)",
704 "There might not be any available file descriptors."); 704 strerror(errno));
705 handle_urgent_timeout(view); 705 handle_urgent_timeout(view);
706 } 706 }
707 } else { 707 } else {