diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-11-23 22:07:39 +1100 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-11-23 22:07:39 +1100 |
commit | 6e89a3e1c3386b4c747144246ed128f117917c5b (patch) | |
tree | 6fa8898e38a7c4ad0e04e6d2357f05a9067a961f /src/support/sess_dump.c | |
parent | 3db776b407af6fc0d25a0d70d1587b2d19820273 (diff) | |
download | mongo-6e89a3e1c3386b4c747144246ed128f117917c5b.tar.gz |
Provide a way to do reentrant / asynchronous serialized function calls to clean up force page eviction.
closes #133
Diffstat (limited to 'src/support/sess_dump.c')
-rw-r--r-- | src/support/sess_dump.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/support/sess_dump.c b/src/support/sess_dump.c index 5599c51e7ad..17936184271 100644 --- a/src/support/sess_dump.c +++ b/src/support/sess_dump.c @@ -80,12 +80,14 @@ __wt_session_print_state(WT_SESSION_IMPL *session) switch (session->wq_state) { case WT_SERIAL_EVICT: return ("evict"); - case WT_SERIAL_READ: - return ("read"); case WT_SERIAL_FUNC: return ("function"); case WT_SERIAL_NONE: return ("none"); + case WT_SERIAL_READ: + return ("read"); + case WT_SERIAL_REENTER: + return ("reenter"); } return ("unknown"); /* NOTREACHED */ |