diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-25 16:50:01 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-25 16:50:01 +1000 |
commit | beacd4d9f9c6da7459bcde0e95031dac41387a7c (patch) | |
tree | ab9711b274282290488220cfb0ec85e4f0463d46 | |
parent | 9b15e81cff62eb214c89f62bc9e499c7f21d86cf (diff) |
Rename progress_queue to transaction_progress_queue
-rw-r--r-- | sway/desktop/transaction.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c index 31a9bf57..7727ec6e 100644 --- a/sway/desktop/transaction.c +++ b/sway/desktop/transaction.c @@ -226,7 +226,7 @@ static void transaction_apply(struct sway_transaction *transaction) { } } -static void progress_queue() { +static void transaction_progress_queue() { struct sway_transaction *transaction = server.head_transaction; struct sway_transaction *next = NULL; while (transaction && !transaction->num_waiting) { @@ -243,7 +243,7 @@ static int handle_timeout(void *data) { wlr_log(L_DEBUG, "Transaction %p timed out (%li waiting)", transaction, transaction->num_waiting); transaction->num_waiting = 0; - progress_queue(); + transaction_progress_queue(); return 0; } @@ -355,7 +355,7 @@ static void set_instruction_ready( #if !TRANSACTION_DEBUG wlr_log(L_DEBUG, "Transaction %p is ready", transaction); wl_event_source_timer_update(transaction->timer, 0); - progress_queue(); + transaction_progress_queue(); #endif } } |