summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-02-21 16:52:36 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2012-02-21 16:52:36 +0100
commitf9b6b94b802c653e6c588f42af0997682e75f267 (patch)
treec9232e9963b78ffa1021ffdf8ab5962e51df8ddb /runtime
parent6cfa853457b190193ba68f77d27e000f2567481e (diff)
downloadrsyslog-f9b6b94b802c653e6c588f42af0997682e75f267.tar.gz
rsyslog-f9b6b94b802c653e6c588f42af0997682e75f267.tar.xz
rsyslog-f9b6b94b802c653e6c588f42af0997682e75f267.zip
added configuration directives to customize queue light delay marks
$MainMsgQueueLightDelayMark, $ActionQueueLightDelayMark; both specify number of messages starting at which a delay happens.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/queue.c1
-rw-r--r--runtime/queue.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/runtime/queue.c b/runtime/queue.c
index e97d78e8..523ae0fc 100644
--- a/runtime/queue.c
+++ b/runtime/queue.c
@@ -2438,6 +2438,7 @@ DEFpropSetMeth(qqueue, iLowWtrMrk, int)
DEFpropSetMeth(qqueue, iDiscardMrk, int)
DEFpropSetMeth(qqueue, iFullDlyMrk, int)
DEFpropSetMeth(qqueue, iDiscardSeverity, int)
+DEFpropSetMeth(qqueue, iLightDlyMrk, int)
DEFpropSetMeth(qqueue, bIsDA, int)
DEFpropSetMeth(qqueue, iMinMsgsPerWrkr, int)
DEFpropSetMeth(qqueue, bSaveOnShutdown, int)
diff --git a/runtime/queue.h b/runtime/queue.h
index 06a58229..dbd6f249 100644
--- a/runtime/queue.h
+++ b/runtime/queue.h
@@ -201,6 +201,7 @@ PROTOTYPEpropSetMeth(qqueue, toQShutdown, long);
PROTOTYPEpropSetMeth(qqueue, toActShutdown, long);
PROTOTYPEpropSetMeth(qqueue, toWrkShutdown, long);
PROTOTYPEpropSetMeth(qqueue, toEnq, long);
+PROTOTYPEpropSetMeth(qqueue, iLightDlyMrk, int);
PROTOTYPEpropSetMeth(qqueue, iHighWtrMrk, int);
PROTOTYPEpropSetMeth(qqueue, iLowWtrMrk, int);
PROTOTYPEpropSetMeth(qqueue, iDiscardMrk, int);