mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-25 11:04:35 +00:00
We need a new protobuf description for file-lock. Originally-signed-off-by: Zheng Gu <cengku.gu@huawei.com> Signed-off-by: Qiang Huang <h.huangqiang@huawei.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
8 lines
210 B
Protocol Buffer
8 lines
210 B
Protocol Buffer
message file_lock_entry {
|
|
required uint32 flag = 1;
|
|
required uint32 type = 2;
|
|
required int32 pid = 3;
|
|
required int32 fd = 4;
|
|
required int64 start = 5;
|
|
required int64 len = 6;
|
|
}
|