mutex.h 405 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) Facebook, Inc. and its affiliates.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #pragma once
  8. #include <folly/SharedMutex.h>
  9. #include <mutex>
  10. #include <shared_mutex>
  11. namespace facebook {
  12. namespace better {
  13. using shared_mutex = folly::SharedMutex;
  14. } // namespace better
  15. } // namespace facebook