move InlineExecutor, ManualExecutor, and GlobalThreadPoolList to
authorJames Sedgwick <jsedgwick@fb.com>
Sat, 21 Oct 2017 22:28:58 +0000 (15:28 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Sat, 21 Oct 2017 22:42:48 +0000 (15:42 -0700)
commit1719bfce91a3cca41abc566049eb4f4b8b2a565a
treec223d552f66e0e207223e14a3f062dee6c3da989
parent87a2402c6ba1c8610b034ed39a896fcc3b61deec
move InlineExecutor, ManualExecutor, and GlobalThreadPoolList to

Summary:
That's everything that's going in executors/ except for Executor.h
itself, which is included in hphp so will have to wait

Reviewed By: mzlee

Differential Revision: D6100274

fbshipit-source-id: 6be37892b1ad7f46828acfa6b2951e51b157a86a
24 files changed:
folly/Makefile.am
folly/concurrency/GlobalThreadPoolList.cpp [deleted file]
folly/concurrency/GlobalThreadPoolList.h [deleted file]
folly/executors/GlobalExecutor.cpp
folly/executors/GlobalThreadPoolList.cpp [new file with mode: 0644]
folly/executors/GlobalThreadPoolList.h [new file with mode: 0644]
folly/executors/InlineExecutor.cpp [new file with mode: 0644]
folly/executors/InlineExecutor.h [new file with mode: 0644]
folly/executors/ManualExecutor.cpp [new file with mode: 0644]
folly/executors/ManualExecutor.h [new file with mode: 0644]
folly/executors/ThreadPoolExecutor.cpp
folly/executors/ThreadPoolExecutor.h
folly/executors/test/AsyncTest.cpp
folly/executors/test/SerialExecutorTest.cpp
folly/futures/Future-inl.h
folly/futures/InlineExecutor.cpp [deleted file]
folly/futures/InlineExecutor.h [deleted file]
folly/futures/ManualExecutor.cpp [deleted file]
folly/futures/ManualExecutor.h [deleted file]
folly/futures/test/Benchmark.cpp
folly/futures/test/ExecutorTest.cpp
folly/futures/test/SelfDestructTest.cpp
folly/futures/test/ViaTest.cpp
folly/futures/test/WindowTest.cpp