summaryrefslogtreecommitdiff
path: root/src/mongo/db/background.h
diff options
context:
space:
mode:
authorWilliam Schultz <william.schultz@mongodb.com>2018-01-17 12:23:27 -0500
committerWilliam Schultz <william.schultz@mongodb.com>2018-01-17 12:23:45 -0500
commit6f885ea4579c04bd73c4d6fecc497520105f2609 (patch)
tree2197bc421cda156907c382b8cd01e82ddfeaed9a /src/mongo/db/background.h
parent0d97768115d093ed0041fff8c0ef39ba30c07e3f (diff)
downloadmongo-6f885ea4579c04bd73c4d6fecc497520105f2609.tar.gz
SERVER-30818 Cleanup comments in background.h
Diffstat (limited to 'src/mongo/db/background.h')
-rw-r--r--src/mongo/db/background.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/background.h b/src/mongo/db/background.h
index 3ae1591642c..1861e1b5f83 100644
--- a/src/mongo/db/background.h
+++ b/src/mongo/db/background.h
@@ -65,11 +65,12 @@ public:
/**
* Waits until there are no background operations in progress for all databases in the given
* list. This function assumes that while it is executing, no new background jobs are started on
- * any of the given databases, and that none of the given databases are deleted.
+ * any of the given databases.
*
* @param dbs the list of all databases on which to wait for background operations to complete.
*/
static void awaitNoBgOpInProgForDbs(std::vector<StringData> dbs);
+
static void awaitNoBgOpInProgForDb(StringData db);
static void awaitNoBgOpInProgForNs(StringData ns);
static void dump(std::ostream&);