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

Rename 'name' member of cr_fd_desc to 'path'

It might contain working directory path as well.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Acked-by: Pavel Emelianov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov
2011-12-17 17:39:18 +04:00
parent bcba2f734a
commit 03a5e05a65
4 changed files with 25 additions and 25 deletions

View File

@@ -70,7 +70,7 @@ extern char image_dir[];
/* file descriptors */
struct cr_fd_desc {
struct cr_fd_desc_tmpl *tmpl; /* template we refer to */
char name[64]; /* the name, based on pid */
char path[PATH_MAX]; /* the path, based on pid */
int fd; /* descriptor for open/close */
};