summaryrefslogtreecommitdiff
path: root/src/support/global.c
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2011-11-03 23:48:27 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2011-11-03 23:48:27 +1100
commit455cfc40f7239a3e93148704033572229f03f2c1 (patch)
tree71d4c307182b6e4782130624312af4e1b38c96ca /src/support/global.c
parent7eaba73eac3283c92b2c757efcd5c907d72301e0 (diff)
downloadmongo-455cfc40f7239a3e93148704033572229f03f2c1.tar.gz
Remove the workQ -- have application threads notify the read and eviction servers directly.
Diffstat (limited to 'src/support/global.c')
-rw-r--r--src/support/global.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/support/global.c b/src/support/global.c
index a61ed719568..97accd34b35 100644
--- a/src/support/global.c
+++ b/src/support/global.c
@@ -17,8 +17,8 @@ __wt_pthread_once(void)
* Mutex allocation is the only thing we do that can fail (but, since
* it's the first mutex we ever create, it's the one that will fail).
*/
- __wt_pthread_once_failed =
- __wt_mtx_alloc(NULL, "WiredTiger process", 0, &__wt_process.mtx);
+ __wt_pthread_once_failed = __wt_mtx_alloc(
+ NULL, "WiredTiger process", 0, &__wt_process.mtx);
TAILQ_INIT(&__wt_process.connqh);