mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-25 02:58:54 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
10 lines
230 B
Protocol Buffer
10 lines
230 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
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;
|
|
}
|