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/lib
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@gmail.com>2019-08-14 07:40:40 +0300
committerAndrei Vagin <avagin@gmail.com>2020-04-25 10:43:23 +0300
commit4127ef4ab769dc4417c22d0ce0a4ddaaca4193b4 (patch)
treef1efcbe44255fb077f4fc46d38acc93b4cda818a /lib
parent0e9b42acf96d2c5fc3a6174ae6e4f2ad8a64c272 (diff)
criu: Add support for time namespaces
The time namespace allows for per-namespace offsets to the system monotonic and boot-time clocks. C/R of time namespaces are very straightforward. On dump, criu enters a target time namespace and dumps currents clocks values, then on restore, criu creates a new namespace and restores clocks values. Signed-off-by: Andrei Vagin <avagin@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/py/images/images.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/py/images/images.py b/lib/py/images/images.py
index dca080657..ca6f207bb 100644
--- a/lib/py/images/images.py
+++ b/lib/py/images/images.py
@@ -466,6 +466,7 @@ handlers = {
'IDS': entry_handler(pb.task_kobj_ids_entry),
'CREDS': entry_handler(pb.creds_entry),
'UTSNS': entry_handler(pb.utsns_entry),
+ 'TIMENS': entry_handler(pb.timens_entry),
'IPC_VAR': entry_handler(pb.ipc_var_entry),
'FS': entry_handler(pb.fs_entry),
'GHOST_FILE': ghost_file_handler(),