diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-01-04 20:40:04 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-01-04 20:40:04 +0100 |
commit | e6960940b6dc5ab81eb2fca4061c333e1795f38d (patch) | |
tree | 08ec0a8cc0bcc64f4a053d24a101101d71c96033 /src/journal/journald-gperf.gperf | |
parent | 3606df64abfa79e8fad7bd75c8634c116a6f1c96 (diff) |
journald: parse configuration file
Diffstat (limited to 'src/journal/journald-gperf.gperf')
-rw-r--r-- | src/journal/journald-gperf.gperf | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/journal/journald-gperf.gperf b/src/journal/journald-gperf.gperf new file mode 100644 index 0000000000..ace373ba47 --- /dev/null +++ b/src/journal/journald-gperf.gperf @@ -0,0 +1,27 @@ +%{ +#include <stddef.h> +#include "conf-parser.h" +#include "journald.h" +%} +struct ConfigPerfItem; +%null_strings +%language=ANSI-C +%define slot-name section_and_lvalue +%define hash-function-name journald_gperf_hash +%define lookup-function-name journald_gperf_lookup +%readonly-tables +%omit-struct-type +%struct-type +%includes +%% +Journal.RateLimitInterval, config_parse_usec, 0, offsetof(Server, rate_limit_interval) +Journal.RateLimitBurst, config_parse_unsigned, 0, offsetof(Server, rate_limit_burst) +Journal.Compress, config_parse_bool, 0, offsetof(Server, compress) +Journal.SystemMaxUse, config_parse_bytes, 0, offsetof(Server, system_metrics.max_use) +Journal.SystemMaxFileSize, config_parse_bytes, 0, offsetof(Server, system_metrics.max_size) +Journal.SystemMinFileSize, config_parse_bytes, 0, offsetof(Server, system_metrics.min_size) +Journal.SystemKeepFree, config_parse_bytes, 0, offsetof(Server, system_metrics.keep_free) +Journal.RuntimeMaxUse, config_parse_bytes, 0, offsetof(Server, runtime_metrics.max_use) +Journal.RuntimeMaxFileSize, config_parse_bytes, 0, offsetof(Server, runtime_metrics.max_size) +Journal.RuntimeMinFileSize, config_parse_bytes, 0, offsetof(Server, runtime_metrics.min_size) +Journal.RuntimeKeepFree, config_parse_bytes, 0, offsetof(Server, runtime_metrics.keep_free) |