diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-14 13:52:07 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-14 13:52:07 +0200 |
commit | 04272876d12488b2039b28683dc53e1c802d303d (patch) | |
tree | e1c1ee2bc7f2bd7268d10cdb580af911152528fb /runtime | |
parent | 7a2dff608d7119accdd6679840987b4fb05f6054 (diff) | |
download | rsyslog-04272876d12488b2039b28683dc53e1c802d303d.tar.gz rsyslog-04272876d12488b2039b28683dc53e1c802d303d.tar.xz rsyslog-04272876d12488b2039b28683dc53e1c802d303d.zip |
implemented $MaxOpenFiles directive and changed testbench
... to utilize it. This work is not yet fully verified to be correct.
Diffstat (limited to 'runtime')
-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 cea457d8..25ec30fc 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -262,6 +262,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_INVLD_FUNC = -2113, /**< invalid function name for function call (rainerscript) */ RS_RET_DUP_FUNC_NAME = -2114, /**< duplicate function name (rainerscript) */ RS_RET_UNKNW_FUNC = -2115, /**< unkown function name (rainerscript) */ + RS_RET_ERR_RLIM_NOFILE = -2116, /**< error setting max. nbr open files process limit */ /* RainerScript error messages (range 1000.. 1999) */ RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */ |