diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-09-16 11:56:07 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-09-16 11:56:07 +0200 |
commit | 760e5f0d3986aa93a07e207dde3206741ec3ad74 (patch) | |
tree | 81ccd4767e616810b19d946280cdf2fb6d841b89 /runtime/rsyslog.h | |
parent | 1e819a8afe9494cc760196ac91f3b617bc073de9 (diff) | |
download | rsyslog-760e5f0d3986aa93a07e207dde3206741ec3ad74.tar.gz rsyslog-760e5f0d3986aa93a07e207dde3206741ec3ad74.tar.xz rsyslog-760e5f0d3986aa93a07e207dde3206741ec3ad74.zip |
performance optimization: unnecessary time() calls during message parsing removed
thanks to David Lang for his excellent performance analysis
Diffstat (limited to 'runtime/rsyslog.h')
-rw-r--r-- | runtime/rsyslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h index a1d1d9fc..361bfb47 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -251,6 +251,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_CONF_FILE_NOT_FOUND = -2104, /**< config file or directory not found */ RS_RET_QUEUE_FULL = -2105, /**< queue is full, operation could not be completed */ RS_RET_ACCEPT_ERR = -2106, /**< error during accept() system call */ + RS_RET_INVLD_TIME = -2107, /**< invalid timestamp (e.g. could not be parsed) */ /* RainerScript error messages (range 1000.. 1999) */ RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */ |