Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/images
diff options
context:
space:
mode:
authorValeriy Vdovin <valeriy.vdovin@virtuozzo.com>2020-01-10 15:57:50 +0300
committerAndrei Vagin <avagin@gmail.com>2020-02-04 23:39:44 +0300
commit4232b270b8a0c866b9ee26e7b5f381cbf7cea56a (patch)
treec523cd5d41e52d87b66200ea9ba84e6caeae4114 /images
parentf1abc9aa26421b0c0ea52a703590cd998e676b55 (diff)
image: core -- Reserve start_time field
To ensure consistency of runtime environment processes within a container need to see same start time values over suspend/resume cycles. We introduce new field to the core image structure to store start time of a dumped process. Later same value would be restored to a newly created task. In future the feature is likely to be pulled here, so we reserve field id in protobuf descriptor. Signed-off-by: Valeriy Vdovin <valeriy.vdovin@virtuozzo.com>
Diffstat (limited to 'images')
-rw-r--r--images/core.proto2
1 files changed, 2 insertions, 0 deletions
diff --git a/images/core.proto b/images/core.proto
index c3dba6f6d..e90522914 100644
--- a/images/core.proto
+++ b/images/core.proto
@@ -53,6 +53,8 @@ message task_core_entry {
//optional int32 tty_pgrp = 17;
optional bool child_subreaper = 18;
+ // Reserved for container relative start time
+ //optional uint64 start_time = 19;
}
message task_kobj_ids_entry {