summaryrefslogtreecommitdiff
path: root/src/include/async.h
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-10-19 17:52:39 -0400
committerKeith Bostic <keith@wiredtiger.com>2014-10-19 17:52:39 -0400
commit396963a0f442b76b4b09e5d627084632c8185856 (patch)
tree559dc63c4cfb984decb16b2bbbe1df43493ab868 /src/include/async.h
parent246f5cf235a960c7d9823b2190c51cc9f868b62d (diff)
downloadmongo-396963a0f442b76b4b09e5d627084632c8185856.tar.gz
Don't prefix the WiredTiger thread types with an underscore, we don't do it
for any other types.
Diffstat (limited to 'src/include/async.h')
-rw-r--r--src/include/async.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/async.h b/src/include/async.h
index bab2a30eb58..8565874c2f3 100644
--- a/src/include/async.h
+++ b/src/include/async.h
@@ -100,7 +100,7 @@ struct __wt_async {
#define WT_ASYNC_MAX_WORKERS 20
WT_SESSION_IMPL *worker_sessions[WT_ASYNC_MAX_WORKERS];
/* Async worker threads */
- _wt_thread_t worker_tids[WT_ASYNC_MAX_WORKERS];
+ wt_thread_t worker_tids[WT_ASYNC_MAX_WORKERS];
uint32_t flags; /* Currently unused. */
};