summaryrefslogtreecommitdiffstats
path: root/runtime/queue.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-05-18 18:39:52 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-05-18 18:39:52 +0200
commitfe5bea77ac2533faab3b7b73bc253c4dc7d702bc (patch)
tree66df98c9369b733b023bfadcac3c52bafccaa676 /runtime/queue.h
parent93f873277bfe5ebb309ff5e92f5dc7244ebd9f1a (diff)
downloadrsyslog-fe5bea77ac2533faab3b7b73bc253c4dc7d702bc.tar.gz
rsyslog-fe5bea77ac2533faab3b7b73bc253c4dc7d702bc.tar.xz
rsyslog-fe5bea77ac2533faab3b7b73bc253c4dc7d702bc.zip
removed queue's UngetObj() call
... which is no longer needed thanks to the new queue design.
Diffstat (limited to 'runtime/queue.h')
-rw-r--r--runtime/queue.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/queue.h b/runtime/queue.h
index 00cee419..e47b8762 100644
--- a/runtime/queue.h
+++ b/runtime/queue.h
@@ -152,12 +152,6 @@ typedef struct queue_s {
struct queue_s *pqDA; /* queue for disk-assisted modes */
struct queue_s *pqParent;/* pointer to the parent (if this is a child queue) */
int bDAEnqOnly; /* EnqOnly setting for DA queue */
- /* some data elements for the queueUngetObj() functionality. This list should always be short
- * and is always kept in memory
- */
- qLinkedList_t *pUngetRoot;
- qLinkedList_t *pUngetLast;
- int iUngottenObjs; /* number of objects currently in the "ungotten" list */
/* now follow queueing mode specific data elements */
union { /* different data elements based on queue type (qType) */
struct {