X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FMakefile.am;h=3eb105ece370984df77b3cd49d17e4321ae5030d;hb=59cb2ab00419bffb627e89cb096e1288c2f37eeb;hp=be999f3c4720aa5f245fb651b12c2f4ad08fc14c;hpb=f089f1fde3ef52161c6630e8b0e78004af6161ae;p=folly.git diff --git a/folly/Makefile.am b/folly/Makefile.am index be999f3c..3eb105ec 100644 --- a/folly/Makefile.am +++ b/folly/Makefile.am @@ -27,7 +27,6 @@ lib_LTLIBRARIES = \ follyincludedir = $(includedir)/folly nobase_follyinclude_HEADERS = \ - Assume.h \ AtomicBitSet.h \ AtomicHashArray.h \ AtomicHashArray-inl.h \ @@ -35,9 +34,7 @@ nobase_follyinclude_HEADERS = \ AtomicHashMap-inl.h \ AtomicIntrusiveLinkedList.h \ AtomicLinkedList.h \ - AtomicStruct.h \ AtomicUnorderedMap.h \ - Baton.h \ Benchmark.h \ Bits.h \ CachelinePadded.h \ @@ -51,14 +48,17 @@ nobase_follyinclude_HEADERS = \ CpuId.h \ CPortability.h \ compression/Compression.h \ + compression/Counters.h \ compression/Utils.h \ compression/Zlib.h \ concurrency/CacheLocality.h \ concurrency/ConcurrentHashMap.h \ concurrency/CoreCachedSharedPtr.h \ concurrency/detail/ConcurrentHashMap-detail.h \ + concurrency/UnboundedQueue.h \ container/Access.h \ container/Array.h \ + container/detail/BitIteratorDetail.h \ container/Iterator.h \ container/Enumerate.h \ container/EvictingCacheMap.h \ @@ -69,7 +69,6 @@ nobase_follyinclude_HEADERS = \ detail/AtFork.h \ detail/AtomicHashUtils.h \ detail/AtomicUnorderedMapUtils.h \ - detail/BitIteratorDetail.h \ detail/DiscriminatedPtrDetail.h \ detail/FileUtilDetail.h \ detail/FingerprintPolynomial.h \ @@ -82,14 +81,12 @@ nobase_follyinclude_HEADERS = \ detail/PolyDetail.h \ detail/RangeCommon.h \ detail/RangeSse42.h \ - detail/Sleeper.h \ detail/SlowFingerprint.h \ detail/SocketFastOpen.h \ detail/StaticSingletonManager.h \ detail/ThreadLocalDetail.h \ detail/TypeList.h \ detail/TurnSequencer.h \ - detail/UncaughtExceptionCounter.h \ executors/Async.h \ executors/CPUThreadPoolExecutor.h \ executors/Codel.h \ @@ -107,6 +104,7 @@ nobase_follyinclude_HEADERS = \ executors/SerialExecutor.h \ executors/ThreadPoolExecutor.h \ executors/ThreadedExecutor.h \ + executors/TimedDrivableExecutor.h \ executors/task_queue/BlockingQueue.h \ executors/task_queue/LifoSemMPMCQueue.h \ executors/task_queue/PriorityLifoSemMPMCQueue.h \ @@ -158,6 +156,7 @@ nobase_follyinclude_HEADERS = \ experimental/LockFreeRingBuffer.h \ experimental/logging/AsyncFileWriter.h \ experimental/logging/FileHandlerFactory.h \ + experimental/logging/FileWriterFactory.h \ experimental/logging/GlogStyleFormatter.h \ experimental/logging/ImmediateFileWriter.h \ experimental/logging/Init.h \ @@ -180,6 +179,8 @@ nobase_follyinclude_HEADERS = \ experimental/logging/printf.h \ experimental/logging/RateLimiter.h \ experimental/logging/StandardLogHandler.h \ + experimental/logging/StandardLogHandlerFactory.h \ + experimental/logging/StreamHandlerFactory.h \ experimental/logging/xlog.h \ experimental/NestedCommandLineApp.h \ experimental/observer/detail/Core.h \ @@ -321,7 +322,9 @@ nobase_follyinclude_HEADERS = \ io/async/test/UndelayedDestruction.h \ io/async/test/Util.h \ json.h \ + lang/Align.h \ lang/Assume.h \ + lang/Bits.h \ lang/ColdClass.h \ lang/Launder.h \ lang/RValueReferenceWrapper.h \ @@ -402,7 +405,6 @@ nobase_follyinclude_HEADERS = \ Random-inl.h \ Range.h \ Replaceable.h \ - RWSpinLock.h \ ScopeGuard.h \ SharedMutex.h \ Singleton.h \ @@ -432,9 +434,17 @@ nobase_follyinclude_HEADERS = \ stats/TimeseriesHistogram-defs.h \ stats/TimeseriesHistogram.h \ synchronization/AsymmetricMemoryBarrier.h \ + synchronization/AtomicStruct.h \ + synchronization/Baton.h \ synchronization/CallOnce.h \ synchronization/LifoSem.h \ + synchronization/ParkingLot.h \ + synchronization/RWSpinLock.h \ + synchronization/SaturatingSemaphore.h \ + synchronization/Tearable.h \ + synchronization/WaitOptions.h \ synchronization/detail/AtomicUtils.h \ + synchronization/detail/Sleeper.h \ system/MemoryMapping.h \ system/Shell.h \ system/ThreadId.h \ @@ -504,6 +514,7 @@ libfollybase_la_SOURCES = \ libfolly_la_SOURCES = \ ClockGettimeWrappers.cpp \ compression/Compression.cpp \ + compression/Counters.cpp \ compression/Zlib.cpp \ concurrency/CacheLocality.cpp \ detail/AtFork.cpp \ @@ -533,6 +544,7 @@ libfolly_la_SOURCES = \ executors/SerialExecutor.cpp \ executors/ThreadPoolExecutor.cpp \ executors/ThreadedExecutor.cpp \ + executors/TimedDrivableExecutor.cpp \ executors/QueuedImmediateExecutor.cpp \ experimental/hazptr/hazptr.cpp \ experimental/hazptr/memory_resource.cpp \ @@ -587,7 +599,6 @@ libfolly_la_SOURCES = \ portability/Fcntl.cpp \ portability/Libgen.cpp \ portability/Malloc.cpp \ - portability/Memory.cpp \ portability/OpenSSL.cpp \ portability/PThread.cpp \ portability/Sockets.cpp \ @@ -621,6 +632,8 @@ libfolly_la_SOURCES = \ stats/TimeseriesHistogram.cpp \ synchronization/AsymmetricMemoryBarrier.cpp \ synchronization/LifoSem.cpp \ + synchronization/ParkingLot.cpp \ + synchronization/WaitOptions.cpp \ system/MemoryMapping.cpp \ system/Shell.cpp \ system/ThreadName.cpp \