diff options
author | monty@mysql.com <> | 2005-02-03 13:18:30 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-02-03 13:18:30 +0200 |
commit | 422c2eb868036e8741c4e6d62d7267930c4e69bd (patch) | |
tree | e52c0cca0b1936bb8b6332b6f0e724b9666f65f1 /innobase/buf/buf0rea.c | |
parent | 12bf600d18b98a8d82167e21a2904ca40071dd75 (diff) | |
parent | e7450d9781781666503837d748cf313e3f406f59 (diff) | |
download | mariadb-git-422c2eb868036e8741c4e6d62d7267930c4e69bd.tar.gz |
4.1 -> 5.0 merge
Diffstat (limited to 'innobase/buf/buf0rea.c')
-rw-r--r-- | innobase/buf/buf0rea.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/innobase/buf/buf0rea.c b/innobase/buf/buf0rea.c index 1ce52c8ee31..d9dc2ca93f5 100644 --- a/innobase/buf/buf0rea.c +++ b/innobase/buf/buf0rea.c @@ -686,7 +686,9 @@ buf_read_recv_pages( fprintf(stderr, "InnoDB: Error: InnoDB has waited for 50 seconds for pending\n" "InnoDB: reads to the buffer pool to be finished.\n" -"InnoDB: Number of pending reads %lu\n", (ulong) buf_pool->n_pend_reads); +"InnoDB: Number of pending reads %lu, pending pread calls %lu\n", + (ulong) buf_pool->n_pend_reads, + (ulong)os_file_n_pending_preads); os_aio_print_debug = TRUE; } |