2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

crtools: Move proc parsing routines to one file

Start with /proc/pid/maps parser

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
This commit is contained in:
Pavel Emelyanov
2012-01-13 20:52:35 +04:00
committed by Cyrill Gorcunov
parent 9792a860b3
commit 12d4c85410
7 changed files with 181 additions and 163 deletions

4
include/proc_parse.h Normal file
View File

@@ -0,0 +1,4 @@
#ifndef __PROC_PARSE_H__
#define __PROC_PARSE_H__
int parse_maps(pid_t pid, int pid_dir, struct list_head *vma_area_list, bool use_map_files);
#endif