summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_context.cpp
diff options
context:
space:
mode:
authorWaley Chen <waleycz@gmail.com>2016-03-29 17:41:59 -0400
committerWaley Chen <waleycz@gmail.com>2016-03-30 00:15:02 -0400
commit58a490d466b31f70384b7173aa50fb32ac487563 (patch)
treec3d836d0305ac569639388828bb98bc2a8076be5 /src/mongo/db/service_context.cpp
parent2cc6e175738a5e18635c28f2bd68c1d6f679e0fc (diff)
downloadmongo-58a490d466b31f70384b7173aa50fb32ac487563.tar.gz
SERVER-23243 Extract time-keeping from Listener
Step 1: getClockSource() -> getPreciseClockSource()
Diffstat (limited to 'src/mongo/db/service_context.cpp')
-rw-r--r--src/mongo/db/service_context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/service_context.cpp b/src/mongo/db/service_context.cpp
index 7fe0e237bdc..1a6f3751096 100644
--- a/src/mongo/db/service_context.cpp
+++ b/src/mongo/db/service_context.cpp
@@ -147,7 +147,7 @@ TickSource* ServiceContext::getTickSource() const {
return _tickSource.get();
}
-ClockSource* ServiceContext::getClockSource() const {
+ClockSource* ServiceContext::getPreciseClockSource() const {
return _clockSource.get();
}