summaryrefslogtreecommitdiff
path: root/src/include/connection.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/connection.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/connection.h')
-rw-r--r--src/include/connection.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/connection.h b/src/include/connection.h
index 4508c1c4098..81866e39df9 100644
--- a/src/include/connection.h
+++ b/src/include/connection.h
@@ -157,7 +157,7 @@ struct __wt_connection_impl {
int hot_backup;
WT_SESSION_IMPL *ckpt_session; /* Checkpoint thread session */
- _wt_thread_t ckpt_tid; /* Checkpoint thread */
+ wt_thread_t ckpt_tid; /* Checkpoint thread */
int ckpt_tid_set; /* Checkpoint thread set */
WT_CONDVAR *ckpt_cond; /* Checkpoint wait mutex */
const char *ckpt_config; /* Checkpoint configuration */
@@ -208,7 +208,7 @@ struct __wt_connection_impl {
WT_LSM_MANAGER lsm_manager; /* LSM worker thread information */
WT_SESSION_IMPL *evict_session; /* Eviction server sessions */
- _wt_thread_t evict_tid; /* Eviction server thread ID */
+ wt_thread_t evict_tid; /* Eviction server thread ID */
int evict_tid_set; /* Eviction server thread ID set */
uint32_t evict_workers_max;/* Max eviction workers */
@@ -217,7 +217,7 @@ struct __wt_connection_impl {
WT_EVICT_WORKER *evict_workctx; /* Eviction worker context */
WT_SESSION_IMPL *stat_session; /* Statistics log session */
- _wt_thread_t stat_tid; /* Statistics log thread */
+ wt_thread_t stat_tid; /* Statistics log thread */
int stat_tid_set; /* Statistics log thread set */
WT_CONDVAR *stat_cond; /* Statistics log wait mutex */
const char *stat_format; /* Statistics log timestamp format */
@@ -231,7 +231,7 @@ struct __wt_connection_impl {
int archive; /* Global archive configuration */
WT_CONDVAR *arch_cond; /* Log archive wait mutex */
WT_SESSION_IMPL *arch_session; /* Log archive session */
- _wt_thread_t arch_tid; /* Log archive thread */
+ wt_thread_t arch_tid; /* Log archive thread */
int arch_tid_set; /* Log archive thread set */
WT_LOG *log; /* Logging structure */
wt_off_t log_file_max; /* Log file max size */
@@ -239,7 +239,7 @@ struct __wt_connection_impl {
uint32_t txn_logsync; /* Log sync configuration */
WT_SESSION_IMPL *sweep_session; /* Handle sweep session */
- _wt_thread_t sweep_tid; /* Handle sweep thread */
+ wt_thread_t sweep_tid; /* Handle sweep thread */
int sweep_tid_set; /* Handle sweep thread set */
WT_CONDVAR *sweep_cond; /* Handle sweep wait mutex */