mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-31 22:35:33 +00:00
proc: Make parse_maps return the amount of them found
Signed-off-by: Pavel Emelyanov <xemul@parallels.com> Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
This commit is contained in:
committed by
Cyrill Gorcunov
parent
e94c85fe6e
commit
fc225709b0
@@ -23,7 +23,7 @@ int parse_maps(pid_t pid, struct list_head *vma_area_list, bool use_map_files)
|
||||
unsigned long ino;
|
||||
char r,w,x,s;
|
||||
int dev_maj, dev_min;
|
||||
int ret = -1;
|
||||
int ret = -1, nr = 0;
|
||||
|
||||
DIR *map_files_dir = NULL;
|
||||
FILE *maps = NULL;
|
||||
@@ -157,10 +157,11 @@ int parse_maps(pid_t pid, struct list_head *vma_area_list, bool use_map_files)
|
||||
}
|
||||
|
||||
list_add_tail(&vma_area->list, vma_area_list);
|
||||
nr++;
|
||||
}
|
||||
|
||||
vma_area = NULL;
|
||||
ret = 0;
|
||||
ret = nr;
|
||||
|
||||
err:
|
||||
if (maps)
|
||||
|
Reference in New Issue
Block a user