summaryrefslogtreecommitdiffstats
path: root/dirty.h
diff options
context:
space:
mode:
Diffstat (limited to 'dirty.h')
-rw-r--r--dirty.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/dirty.h b/dirty.h
index 0153cb69..79805b60 100644
--- a/dirty.h
+++ b/dirty.h
@@ -35,6 +35,7 @@ int parseRFCSyslogMsg(msg_t *pMsg, int flags);
int parseLegacySyslogMsg(msg_t *pMsg, int flags);
rsRetVal diagGetMainMsgQSize(int *piSize); /* for imdiag */
char* getFIOPName(unsigned iFIOP);
+rsRetVal createMainQueue(qqueue_t **ppQueue, uchar *pszQueueName);
/* Intervals at which we flush out "message repeated" messages,
* in seconds after previous message is logged. After each flush,
@@ -46,6 +47,7 @@ extern int iActExecOnceInterval;
extern int MarkInterval;
extern int repeatinterval[2];
extern int bReduceRepeatMsgs;
+extern qqueue_t *pMsgQueue; /* the main message queue */
#define MAXREPEAT ((int)((sizeof(repeatinterval) / sizeof(repeatinterval[0])) - 1))
#define REPEATTIME(f) ((f)->f_time + repeatinterval[(f)->f_repeatcount])
#define BACKOFF(f) { if (++(f)->f_repeatcount > MAXREPEAT) \