File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -3244,8 +3244,8 @@ logs_empty_and_mark_files_at_shutdown(void)
3244
3244
os_event_set (lock_sys->timeout_event );
3245
3245
os_event_set (dict_stats_event);
3246
3246
}
3247
- #define COUNT_INTERVAL 600
3248
- #define CHECK_INTERVAL 100000
3247
+ #define COUNT_INTERVAL 600U
3248
+ #define CHECK_INTERVAL 100000U
3249
3249
os_thread_sleep (CHECK_INTERVAL);
3250
3250
3251
3251
count++;
@@ -3261,7 +3261,8 @@ logs_empty_and_mark_files_at_shutdown(void)
3261
3261
if (srv_print_verbose_log && count > COUNT_INTERVAL) {
3262
3262
service_manager_extend_timeout (
3263
3263
COUNT_INTERVAL * CHECK_INTERVAL/1000000 * 2 ,
3264
- " Waiting for %lu active transactions to finish" );
3264
+ " Waiting for %lu active transactions to finish" ,
3265
+ (ulong) total_trx);
3265
3266
ib_logf (IB_LOG_LEVEL_INFO,
3266
3267
" Waiting for %lu active transactions to finish" ,
3267
3268
(ulong) total_trx);
Original file line number Diff line number Diff line change @@ -3560,8 +3560,8 @@ logs_empty_and_mark_files_at_shutdown(void)
3560
3560
os_event_set (lock_sys->timeout_event );
3561
3561
os_event_set (dict_stats_event);
3562
3562
}
3563
- #define COUNT_INTERVAL 600
3564
- #define CHECK_INTERVAL 100000
3563
+ #define COUNT_INTERVAL 600U
3564
+ #define CHECK_INTERVAL 100000U
3565
3565
os_thread_sleep (CHECK_INTERVAL);
3566
3566
3567
3567
count++;
@@ -3577,7 +3577,8 @@ logs_empty_and_mark_files_at_shutdown(void)
3577
3577
if (srv_print_verbose_log && count > COUNT_INTERVAL) {
3578
3578
service_manager_extend_timeout (
3579
3579
COUNT_INTERVAL * CHECK_INTERVAL/1000000 * 2 ,
3580
- " Waiting for %lu active transactions to finish" );
3580
+ " Waiting for %lu active transactions to finish" ,
3581
+ (ulong) total_trx);
3581
3582
ib_logf (IB_LOG_LEVEL_INFO,
3582
3583
" Waiting for %lu active transactions to finish" ,
3583
3584
(ulong) total_trx);
You can’t perform that action at this time.
0 commit comments