summaryrefslogtreecommitdiff
path: root/src/mongo/util/progress_meter.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-60646 remove ThreadSafeStringBilly Donahue2021-10-141-7/+12
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-1/+1
|
* SERVER-40357 expand all calls to MONGO_DISALLOW_COPYINGBilly Donahue2019-03-281-2/+4
| | | | | | | | | | | produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-3/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37265 Change curOp and ProgressMeter for hybrid buildsLouis Williams2019-01-021-17/+21
|
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-14/+17
|
* SERVER-27938 Rename all OperationContext variables to opCtxMaria van Keulen2017-03-071-1/+1
| | | | | | This commit is an automated rename of all whole word instances of txn, _txn, and txnPtr to opCtx, _opCtx, and opCtxPtr, respectively in all .cpp and .h files in src/mongo.
* SERVER-20609 optimize OpDebug and CurOp constructionAdam Midvidy2015-10-301-6/+6
| | | | | | - replace assignment with NSDMI - remove the giant ThreadSafeString from CurOp - remove unnecessary reset() call to opDebug in assembleResponse
* SERVER-18978: Clang-Format - Fix comment word wrapping indentationMark Benvenuto2015-06-201-2/+2
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-101/+127
|
* SERVER-18991 Replace all usages of boost::noncopyable with ↵Andrew Morrow2015-06-161-3/+4
| | | | MONGO_DISALLOW_COPYING
* Revert "Revert "SERVER-18515 Replace OperationContext::getCurOp with ↵Ernie Hershey2015-05-181-1/+1
| | | | | | CurOp::get(OperationContext*)"" This reverts commit 7147e127644cba2bfa292945557b43664cc31f47.
* Revert "SERVER-18515 Replace OperationContext::getCurOp with ↵Ernie Hershey2015-05-181-1/+1
| | | | | | CurOp::get(OperationContext*)" This reverts commit d5bf63455aa614d98ac840f09ce5ca6b813b9507.
* SERVER-18515 Replace OperationContext::getCurOp with ↵Andy Schwerin2015-05-181-1/+1
| | | | CurOp::get(OperationContext*)
* SERVER-13256 Remove goodies.hAndrew Morrow2015-01-051-1/+0
|
* SERVER-13256 Move ThreadSafeString to own fileAndrew Morrow2015-01-051-0/+1
|
* SERVER-14062 Move most non-global curop access through OperationContextGeert Bosch2014-05-301-1/+1
|
* SERVER-13264 Move Apache-licensed files to AGPLIan Whalen2014-05-161-9/+21
| | | | Also update generators.
* SERVER-11763 switch ProgressMeter's _name to be a ThreadSafeStringmatt dannenberg2013-12-021-6/+9
|
* SERVER-9907 Allow to skip initial count() in mapreduceRandolph Tan2013-07-301-3/+9
| | | | Added option to hide the total in the progress meter.
* SERVER-4858 give ProgressMeter better printsMatt Dannenberg2012-12-181-6/+13
| | | | | | | | | | | ProgressMeters now have a _name attribute which is printed as part of each output to give the output more context Conflicts: src/mongo/db/commands/mr.cpp src/mongo/db/index_update.cpp src/mongo/tools/dump.cpp Updated by Mathias on 2012/12/17 to fix conficts and new PMs in indexupdatetests.cpp
* SERVER-3067 Add killop support for foreground index builds.Aaron2012-11-081-0/+2
|
* SERVER-6908 Don't pass strings by valueTad Marshall2012-08-311-1/+1
| | | | | Change lots of code to take <string> arguments by const ref instead of by value; minor changes to surrounding code.
* move ProgressMeter into its own file and make output use log() instead of ↵Eliot Horowitz2012-03-191-0/+108
cout SERVER-1693