From 61eab46ee62a72629fa86c1929e73a2bfa95bc02 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Mon, 21 Aug 2023 16:12:52 +0200 Subject: parser: permit gc-interval in map declarations Maps support timeouts, so allow to set the gc interval as well. Fixes: 949cc39eb93f ("parser: support of maps with timeout") Signed-off-by: Florian Westphal --- src/parser_bison.y | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/parser_bison.y') diff --git a/src/parser_bison.y b/src/parser_bison.y index 56378293..7b8eac95 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -2237,6 +2237,11 @@ map_block : /* empty */ { $$ = $-1; } $1->timeout = $3; $$ = $1; } + | map_block GC_INTERVAL time_spec stmt_separator + { + $1->gc_int = $3; + $$ = $1; + } | map_block TYPE data_type_expr COLON map_block_data_interval data_type_expr stmt_separator close_scope_type -- cgit v1.2.3