2012-07-19 12:43:36 +04:00
|
|
|
message vma_entry {
|
|
|
|
required uint64 start = 1;
|
|
|
|
required uint64 end = 2;
|
|
|
|
required uint64 pgoff = 3;
|
|
|
|
required uint64 shmid = 4;
|
|
|
|
required uint32 prot = 5;
|
|
|
|
required uint32 flags = 6;
|
|
|
|
required uint32 status = 7;
|
2014-02-01 12:27:00 +04:00
|
|
|
/*
|
|
|
|
* This fd thing is unused in the image, it was lost
|
|
|
|
* while switching from execve restore model. It is
|
|
|
|
* -1 by default.
|
|
|
|
*/
|
2012-07-19 12:43:36 +04:00
|
|
|
required sint64 fd = 8;
|
2012-10-26 00:16:05 +04:00
|
|
|
|
|
|
|
/* madvise flags bitmap */
|
|
|
|
optional uint64 madv = 9;
|
2014-04-04 12:04:00 +04:00
|
|
|
|
|
|
|
/* file status flags */
|
|
|
|
optional uint32 fdflags = 10;
|
2012-07-19 12:43:36 +04:00
|
|
|
}
|