| 368 | #endif // TS_USE_HWLOC |
| 369 | |
| 370 | EventProcessor::EventProcessor() : thread_initializer(this) |
| 371 | { |
| 372 | ink_zero(all_ethreads); |
| 373 | ink_zero(all_dthreads); |
| 374 | ink_mutex_init(&dedicated_thread_spawn_mutex); |
| 375 | // Because ET_NET is compile time set to 0 it *must* be the first type registered. |
| 376 | this->register_event_type("ET_NET"); |
| 377 | } |
| 378 | |
| 379 | EventProcessor::~EventProcessor() |
| 380 | { |
nothing calls this directly
no test coverage detected