From 4d77b9fe7da3d014943a16cb4b9a4ca3a531521a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 5 Jul 2024 17:20:13 +0200 Subject: all: add qemu snapshotting mode --- executor/executor_runner.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'executor/executor_runner.h') diff --git a/executor/executor_runner.h b/executor/executor_runner.h index 260d4a5de..96fcc9b44 100644 --- a/executor/executor_runner.h +++ b/executor/executor_runner.h @@ -352,7 +352,8 @@ private: output_.insert(output_.end(), tmp, tmp + strlen(tmp)); } } - auto data = finish_output(resp_mem_, id_, msg_->id, elapsed, freshness_++, status, output); + uint32 num_calls = read_input(&prog_data); + auto data = finish_output(resp_mem_, id_, msg_->id, num_calls, elapsed, freshness_++, status, output); conn_.Send(data.data(), data.size()); resp_mem_->Reset(); -- cgit mrf-deployment