You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2021/11/17 19:19:30 UTC

[trafficserver] branch 9.2.x updated: Remove commented out EventProcessor::eventthread - it's time (#8517)

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 9.2.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.2.x by this push:
     new ec19b91  Remove commented out EventProcessor::eventthread - it's time (#8517)
ec19b91 is described below

commit ec19b912a7e562c357436ce3a4b2298d2aaf4906
Author: Alan M. Carroll <am...@apache.org>
AuthorDate: Mon Nov 15 18:09:13 2021 -0600

    Remove commented out EventProcessor::eventthread - it's time (#8517)
    
    (cherry picked from commit 8bc603aee35ce0b7b5f9a809ed232e5fdc4cc0dd)
---
 iocore/eventsystem/I_EventProcessor.h | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/iocore/eventsystem/I_EventProcessor.h b/iocore/eventsystem/I_EventProcessor.h
index c4beb00..5d21102 100644
--- a/iocore/eventsystem/I_EventProcessor.h
+++ b/iocore/eventsystem/I_EventProcessor.h
@@ -285,16 +285,6 @@ public:
   */
   EThread *all_ethreads[MAX_EVENT_THREADS];
 
-  /**
-    An array of pointers, organized by thread group, to all of the
-    EThreads handled by the EventProcessor. An array of pointers to all of
-    the EThreads created throughout the existence of the EventProcessor
-    instance. It is a two-dimensional array whose first dimension is the
-    thread group id and the second the EThread pointers for that group.
-
-  */
-  //  EThread *eventthread[MAX_EVENT_TYPES][MAX_THREADS_IN_EACH_TYPE];
-
   /// Data kept for each thread group.
   /// The thread group ID is the index into an array of these and so is not stored explicitly.
   struct ThreadGroupDescriptor {