From: Sage Weil Date: Mon, 5 Nov 2018 22:46:02 +0000 (-0600) Subject: common/WorkQueue: no WorkQueue or ThreadPool on seastar X-Git-Tag: v14.1.0~820^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=334ab0cdeef97f0804e4870ee6036bca28b0715f;p=ceph-ci.git common/WorkQueue: no WorkQueue or ThreadPool on seastar At least for now! Signed-off-by: Sage Weil --- diff --git a/src/common/WorkQueue.h b/src/common/WorkQueue.h index f3424f5fa32..d3d76412d36 100644 --- a/src/common/WorkQueue.h +++ b/src/common/WorkQueue.h @@ -15,6 +15,15 @@ #ifndef CEPH_WORKQUEUE_H #define CEPH_WORKQUEUE_H +#ifdef WITH_SEASTAR +// for ObjectStore.h +struct ThreadPool { + struct TPHandle { + }; +}; + +#else + #include #include #include @@ -722,5 +731,6 @@ public: }; +#endif #endif