mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 09:10:10 +00:00
These are used by single process, no need in keeping them in such a strange way. Plus, turn this array into a hash table for better search. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
16 lines
347 B
C
16 lines
347 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);
|
|
#endif
|