summaryrefslogtreecommitdiff
path: root/src/mongo/db/baton.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-42165 Replace uses of stdx::mutex with mongo::MutexBen Caimano2019-09-171-5/+5
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-1/+1
|
* SERVER-40721 Add SubBatonJason Carey2019-05-011-0/+154
Introduce a subbaton, which can be created from a baton and used in place of one. The key distinction being that a subbaton can be detached before its parent baton. When this occurs, the subbaton will fail all scheduled work inside it and refuse future work.