/** \internal
* \brief process flows injected into our queue by other threads
*/
-static inline void FlowWorkerProcessInjectedFlows(ThreadVars *tv,
- FlowWorkerThreadData *fw, Packet *p, void *detect_thread)
+static inline void FlowWorkerProcessInjectedFlows(
+ ThreadVars *tv, FlowWorkerThreadData *fw, Packet *p)
{
/* take injected flows and append to our work queue */
FLOWWORKER_PROFILING_START(p, PROFILE_FLOWWORKER_FLOW_INJECTED);
housekeeping:
/* take injected flows and add them to our local queue */
- FlowWorkerProcessInjectedFlows(tv, fw, p, detect_thread);
+ FlowWorkerProcessInjectedFlows(tv, fw, p);
/* process local work queue */
FlowWorkerProcessLocalFlows(tv, fw, p, detect_thread);