summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/fops
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2018-07-30 16:19:19 +1000
committerLuke Chen <luke.chen@mongodb.com>2018-07-30 16:19:19 +1000
commit9ca6c110827ffb212613d4e6c5f9645a41c0432d (patch)
tree842e8c8aa6c8222ef658501044b40580ec15b1d0 /src/third_party/wiredtiger/test/fops
parent44c522677421537b3cf118d323af82353ad956d4 (diff)
downloadmongo-9ca6c110827ffb212613d4e6c5f9645a41c0432d.tar.gz
Import wiredtiger: 376f355fb03c770b4fc7374ef817c0c786311e7a from branch mongodb-4.2
ref: 1be1b793be..376f355fb0 for: 4.1.2 WT-3963 Add a schema intensive abort testing WT-4147 Log recovery should not ignore corruption outside of log records in a log file WT-4183 Extend verbose option to log more messages on error returns WT-4186 Log recovery should detect and report corruption within log records WT-4187 Coverity: unused value complaints WT-4189 Potential infinite loop in __async_flush_wait(). WT-4191 Fix Coverity static analysis errors WT-4195 When encountering an illegal value, log the value that failed WT-4196 Make log corruption checking work regardless of the machine byte order WT-4198 Some supported MongoDB architectures don't support crc32 hardware WT-4199 Fix an incorrect report of log corruption
Diffstat (limited to 'src/third_party/wiredtiger/test/fops')
-rw-r--r--src/third_party/wiredtiger/test/fops/fops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/test/fops/fops.c b/src/third_party/wiredtiger/test/fops/fops.c
index 99c333be4a0..96a60acbfa5 100644
--- a/src/third_party/wiredtiger/test/fops/fops.c
+++ b/src/third_party/wiredtiger/test/fops/fops.c
@@ -69,7 +69,7 @@ fop_start(u_int nthreads)
/* Wait for the threads. */
for (i = 0; i < nthreads; ++i)
- testutil_check(__wt_thread_join(NULL, tids[i]));
+ testutil_check(__wt_thread_join(NULL, &tids[i]));
(void)gettimeofday(&stop, NULL);
seconds = (stop.tv_sec - start.tv_sec) +