mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
The plan is to have all file entries have unique ID. Fifo generates a reg file entry to reuse the whole reg-files c/r-ing engine (ghosts, open-by-path, etc.) and right now ID for this entry is the same as for fifo entry. Reviewed-by: Kirill Tkhai <ktkhai@virtuozzo.com> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
7 lines
134 B
Protocol Buffer
7 lines
134 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
message fifo_entry {
|
|
required uint32 id = 1;
|
|
required uint32 pipe_id = 2;
|
|
optional uint32 regf_id = 3;
|
|
}
|