From b2ba0d74130736f17b91fcc73b4514b22cab0867 Mon Sep 17 00:00:00 2001 From: Josiah VanderZee Date: Mon, 15 Jun 2026 12:02:21 -0500 Subject: [PATCH] Remove unused EThread members This removes the following members: - EThread::diskHandler - EThread::aio_ops --- include/iocore/eventsystem/EThread.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/iocore/eventsystem/EThread.h b/include/iocore/eventsystem/EThread.h index 99569b9fffc..ff3b0e0933f 100644 --- a/include/iocore/eventsystem/EThread.h +++ b/include/iocore/eventsystem/EThread.h @@ -47,7 +47,6 @@ using hwloc_obj_t = hwloc_obj *; // instead. #define MUTEX_RETRY_DELAY HRTIME_MSECONDS(20) -class DiskHandler; struct EventIO; class ServerSessionPool; @@ -328,12 +327,6 @@ class EThread : public Thread /** Block of memory to allocate thread specific data e.g. stat system arrays. */ char thread_private[PER_THREAD_DATA]; - /** Private Data for the Disk Processor. */ - DiskHandler *diskHandler = nullptr; - - /** Private Data for AIO. */ - Que(Continuation, link) aio_ops; - ProtectedQueue EventQueueExternal; PriorityEventQueue EventQueue;