diff options
author | Henrik Edin <henrik.edin@mongodb.com> | 2017-08-15 11:25:22 -0400 |
---|---|---|
committer | Henrik Edin <henrik.edin@mongodb.com> | 2017-09-22 16:38:54 -0400 |
commit | 6732fbb1fb749e9f22f0ed4633e24515f842dafc (patch) | |
tree | 46ecca0cb2d251ee428f51fcb32c975a184bce9f /src/mongo/stdx | |
parent | ab7ceed2108a7d19518490929b03fa6f4a13257c (diff) | |
download | mongo-6732fbb1fb749e9f22f0ed4633e24515f842dafc.tar.gz |
SERVER-30135 Added a synchronous executor to make the code path between the two modes similar while still allowing customization in the execution. Should fix some perf regressions that came with unifying the service state machine.
Diffstat (limited to 'src/mongo/stdx')
-rw-r--r-- | src/mongo/stdx/condition_variable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mongo/stdx/condition_variable.h b/src/mongo/stdx/condition_variable.h index d2dcd0a9a57..40ca92ba8f6 100644 --- a/src/mongo/stdx/condition_variable.h +++ b/src/mongo/stdx/condition_variable.h @@ -36,6 +36,7 @@ namespace stdx { using condition_variable = ::std::condition_variable; // NOLINT using condition_variable_any = ::std::condition_variable_any; // NOLINT using cv_status = ::std::cv_status; // NOLINT +using ::std::notify_all_at_thread_exit; // NOLINT } // namespace stdx } // namespace mongo |