mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
447 B
C
14 lines
447 B
C
17 years ago
|
#ifndef __TM_THREADS_H__
|
||
|
#define __TM_THREADS_H__
|
||
|
|
||
|
void Tm1SlotSetFunc(ThreadVars *, TmModule *);
|
||
|
void Tm2SlotSetFunc1(ThreadVars *, TmModule *);
|
||
|
void Tm2SlotSetFunc2(ThreadVars *, TmModule *);
|
||
|
ThreadVars *TmThreadCreate(char *name, char *inq_name, char *inqh_name, char *outq_name, char *outqh_name, char *slots);
|
||
|
int TmThreadSpawn(ThreadVars *);
|
||
|
void TmThreadKillThreads(void);
|
||
|
void TmThreadAppend(ThreadVars *);
|
||
|
|
||
|
#endif /* __TM_THREADS_H__ */
|
||
|
|