From 8951958ff6d8241df9ffe048e2c0d0766a9d383b Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 3 Jan 2008 13:28:45 +0000 Subject: queue is now a full object and handles threading by itself --- rsyslog.h | 1 + 1 file changed, 1 insertion(+) (limited to 'rsyslog.h') diff --git a/rsyslog.h b/rsyslog.h index 20bbf1ef..4404a30b 100644 --- a/rsyslog.h +++ b/rsyslog.h @@ -93,6 +93,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_GSS_SEND_ERROR = -2024, /**< error during GSS (via TCP) send process */ RS_RET_TCP_SOCKCREATE_ERR = -2025, /**< error during creation of TCP socket */ RS_RET_GSS_SENDINIT_ERROR = -2024, /**< error during GSS (via TCP) send initialization process */ + RS_RET_QUEUE_FULL = -2025, /**< queue is full, operation could not be completed */ RS_RET_OK_DELETE_LISTENTRY = 1, /**< operation successful, but callee requested the deletion of an entry (special state) */ RS_RET_TERMINATE_NOW = 2, /**< operation successful, function is requested to terminate (mostly used with threads) */ RS_RET_NO_RUN = 3, /**< operation successful, but function does not like to be executed */ -- cgit