criu/protobuf/rlimit.proto
Pavel Emelyanov 748be83181 cr: Support rlimits
Dump the with "new" prlimit syscall that works on arbitrary pid.

Restore is done in restorer _after_ mappings mixup and _before_
caps drop to make it set any max value.

The RLIM_INFINITY is handled explicitly to help future 64<->32
bits migration.

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
2013-01-10 20:08:38 +04:00

4 lines
79 B
Protocol Buffer

message rlimit_entry {
required uint64 cur = 1;
required uint64 max = 2;
}