mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 09:58:09 +00:00
crtools.h is too heavy to be included in many sources Signed-off-by: Andrey Vagin <avagin@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
33 lines
790 B
C
33 lines
790 B
C
#ifndef __CR_CRTOOLS_H__
|
|
#define __CR_CRTOOLS_H__
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "list.h"
|
|
#include "asm/types.h"
|
|
#include "servicefd.h"
|
|
|
|
#define CR_FD_PERM (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH)
|
|
|
|
int check_img_inventory(void);
|
|
int write_img_inventory(void);
|
|
void kill_inventory(void);
|
|
|
|
#define LAST_PID_PATH "/proc/sys/kernel/ns_last_pid"
|
|
|
|
int cr_dump_tasks(pid_t pid);
|
|
int cr_pre_dump_tasks(pid_t pid);
|
|
int cr_restore_tasks(void);
|
|
int cr_show(int pid);
|
|
int convert_to_elf(char *elf_path, int fd_core);
|
|
int cr_check(void);
|
|
int cr_exec(int pid, char **opts);
|
|
|
|
void restrict_uid(unsigned int uid, unsigned int gid);
|
|
struct proc_status_creds;
|
|
bool may_dump(struct proc_status_creds *);
|
|
struct _CredsEntry;
|
|
bool may_restore(struct _CredsEntry *);
|
|
|
|
#endif /* __CR_CRTOOLS_H__ */
|