diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-11-03 23:48:27 +1100 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-11-03 23:48:27 +1100 |
commit | 455cfc40f7239a3e93148704033572229f03f2c1 (patch) | |
tree | 71d4c307182b6e4782130624312af4e1b38c96ca /src/support/global.c | |
parent | 7eaba73eac3283c92b2c757efcd5c907d72301e0 (diff) | |
download | mongo-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.c | 4 |
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); |