Commit 186bd8ad authored by Nathan Bronson's avatar Nathan Bronson Committed by Sara Golemon

move SharedMutex from folly/experimental to folly

Summary: SharedMutex has been in heavy production use for a while with no
bugs reported and no API changes requested, it is no longer experimental.

Reviewed By: @yfeldblum

Differential Revision: D2165275
parent dfd26951
...@@ -109,7 +109,6 @@ nobase_follyinclude_HEADERS = \ ...@@ -109,7 +109,6 @@ nobase_follyinclude_HEADERS = \
experimental/JSONSchema.h \ experimental/JSONSchema.h \
experimental/LockFreeRingBuffer.h \ experimental/LockFreeRingBuffer.h \
experimental/Select64.h \ experimental/Select64.h \
experimental/SharedMutex.h \
experimental/StringKeyedCommon.h \ experimental/StringKeyedCommon.h \
experimental/StringKeyedUnorderedMap.h \ experimental/StringKeyedUnorderedMap.h \
experimental/StringKeyedUnorderedSet.h \ experimental/StringKeyedUnorderedSet.h \
...@@ -233,6 +232,7 @@ nobase_follyinclude_HEADERS = \ ...@@ -233,6 +232,7 @@ nobase_follyinclude_HEADERS = \
Range.h \ Range.h \
RWSpinLock.h \ RWSpinLock.h \
ScopeGuard.h \ ScopeGuard.h \
SharedMutex.h \
Singleton.h \ Singleton.h \
Singleton-inl.h \ Singleton-inl.h \
SmallLocks.h \ SmallLocks.h \
...@@ -390,8 +390,9 @@ libfolly_la_SOURCES = \ ...@@ -390,8 +390,9 @@ libfolly_la_SOURCES = \
MemoryMapping.cpp \ MemoryMapping.cpp \
Random.cpp \ Random.cpp \
SafeAssert.cpp \ SafeAssert.cpp \
SocketAddress.cpp \ SharedMutex.cpp \
Singleton.cpp \ Singleton.cpp \
SocketAddress.cpp \
SpookyHashV1.cpp \ SpookyHashV1.cpp \
SpookyHashV2.cpp \ SpookyHashV2.cpp \
stats/Instantiations.cpp \ stats/Instantiations.cpp \
...@@ -410,7 +411,6 @@ libfolly_la_SOURCES = \ ...@@ -410,7 +411,6 @@ libfolly_la_SOURCES = \
experimental/io/FsUtil.cpp \ experimental/io/FsUtil.cpp \
experimental/JSONSchema.cpp \ experimental/JSONSchema.cpp \
experimental/Select64.cpp \ experimental/Select64.cpp \
experimental/SharedMutex.cpp \
experimental/TestUtil.cpp \ experimental/TestUtil.cpp \
wangle/acceptor/Acceptor.cpp \ wangle/acceptor/Acceptor.cpp \
wangle/acceptor/ConnectionManager.cpp \ wangle/acceptor/ConnectionManager.cpp \
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
#include <folly/experimental/SharedMutex.h> #include <folly/SharedMutex.h>
#include <stdlib.h> #include <stdlib.h>
#include <thread> #include <thread>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment