move executor task queues and thread factories into subdirectories
authorJames Sedgwick <jsedgwick@fb.com>
Fri, 20 Oct 2017 20:30:03 +0000 (13:30 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Fri, 20 Oct 2017 20:36:07 +0000 (13:36 -0700)
commit0231b21273f809fda5753589b09e7f61c24cdac6
tree0277aa1c8228a848d567aad27367806ea2b9e21b
parent43591b0dd8e09c300f8d9356d9ac5857ec61164f
move executor task queues and thread factories into subdirectories

Summary:
as title, see moves

(Note: this ignores all push blocking failures!)

Reviewed By: mzlee

Differential Revision: D6112001

fbshipit-source-id: 1eb10b44ae8ee1f90a10e05c29e48c99d824afa5
22 files changed:
folly/Makefile.am
folly/executors/BlockingQueue.h [deleted file]
folly/executors/CPUThreadPoolExecutor.cpp
folly/executors/LifoSemMPMCQueue.h [deleted file]
folly/executors/NamedThreadFactory.h [deleted file]
folly/executors/PriorityLifoSemMPMCQueue.h [deleted file]
folly/executors/PriorityThreadFactory.h [deleted file]
folly/executors/ThreadFactory.h [deleted file]
folly/executors/ThreadPoolExecutor.h
folly/executors/ThreadedExecutor.cpp
folly/executors/ThreadedExecutor.h
folly/executors/UnboundedBlockingQueue.h [deleted file]
folly/executors/task_queue/BlockingQueue.h [new file with mode: 0644]
folly/executors/task_queue/LifoSemMPMCQueue.h [new file with mode: 0644]
folly/executors/task_queue/PriorityLifoSemMPMCQueue.h [new file with mode: 0644]
folly/executors/task_queue/UnboundedBlockingQueue.h [new file with mode: 0644]
folly/executors/task_queue/test/UnboundedBlockingQueueTest.cpp [new file with mode: 0644]
folly/executors/test/ThreadPoolExecutorTest.cpp
folly/executors/test/UnboundedBlockingQueueTest.cpp [deleted file]
folly/executors/thread_factory/NamedThreadFactory.h [new file with mode: 0644]
folly/executors/thread_factory/PriorityThreadFactory.h [new file with mode: 0644]
folly/executors/thread_factory/ThreadFactory.h [new file with mode: 0644]