summaryrefslogtreecommitdiff
path: root/src/mongo/db/ftdc/file_manager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-5/+5
|
* SERVER-39339 Remove `stdx/memory.h`ADAM David Alan Martin2019-06-101-1/+1
|
* SERVER-41148 FTDC is calling boost::filesystem without passing an error_code ↵Mark Benvenuto2019-06-051-7/+36
| | | | parameter
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-091-1/+1
| | | | | | Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-21/+23
|
* SERVER-27244 Status usage compile-time facilities.ADAM David Alan Martin2017-06-181-1/+1
| | | | | | | | | | | | | | | | | There are numerous places in the codebase where `mongo::Status` or `mongo::StatusWith< T >` objects are returned and never checked. Many of these are innocuous, but many of them are potentially severe bugs. This change introduces facilities to permit compile-time warning of unchecked `Status` and `StatusWith` usage on clang compilers. It introduces an `ignore` function which is useful to state that a specific "ignored status" case was intentional. It not presently an error, in clang builds, to forget to check a `Status` -- this will come in a later commit. This also introduces a `transitional_ignore` function, which allows for easy continual auditing of the codebase for current "whitelisted" unchecked-status instances. All present "ignored status" cases have been marked `transitional_ignore`.
* SERVER-26412 Do not pass empty strings into ↵samantharitter2016-10-051-0/+4
| | | | boost::filesystem::create_directories
* SERVER-23971 Clang-Format codeMark Benvenuto2016-05-281-4/+6
|
* SERVER-23548 Remove VS2013 workaroundsMark Benvenuto2016-05-031-5/+0
|
* SERVER-20352 Correctly check for errors from ↵Mathias Stearn2016-02-041-2/+5
| | | | boost::filesystem::create_directories
* SERVER-20582: _id time reflects end of chunk instead of beginningMark Benvenuto2015-10-221-14/+17
|
* SERVER-20958: Ensure file names are unique when quickly written and rotated.Mark Benvenuto2015-10-211-7/+12
|
* SERVER-20776: diagnostic.data directory size limit is not enforcedMark Benvenuto2015-10-121-1/+1
|
* SERVER-19584: Implement full-time diagnostic data capture file reader and writerMark Benvenuto2015-09-081-0/+301