mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 09:05:10 +00:00
v2: - Use regular uint types in message proto - Use PB engine for "show" v3: - drop usage of temp. variable in prepare_shmem_pid Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
18 lines
402 B
C
18 lines
402 B
C
#ifndef __CR_SHMEM_H__
|
|
#define __CR_SHMEM_H__
|
|
|
|
#include "../protobuf/vma.pb-c.h"
|
|
|
|
int prepare_shmem_pid(int pid);
|
|
int prepare_shmem_restore(void);
|
|
void show_saved_shmems(void);
|
|
int get_shmem_fd(int pid, VmaEntry *vi);
|
|
|
|
struct shmems;
|
|
extern struct shmems *rst_shmems;
|
|
|
|
int cr_dump_shmem(void);
|
|
int add_shmem_area(pid_t pid, VmaEntry *vma);
|
|
int init_shmem_dump(void);
|
|
void fini_shmem_dump(void);
|
|
#endif
|