mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 17:49:13 +00:00
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
23 lines
553 B
C
23 lines
553 B
C
#ifndef __CR_SHOW_H__
|
|
#define __CR_SHOW_H__
|
|
|
|
#include <stdbool.h>
|
|
#include "asm/types.h"
|
|
|
|
struct show_image_info {
|
|
u32 magic;
|
|
int pb_type;
|
|
bool single;
|
|
void (*payload)(int, void *);
|
|
char *fmt;
|
|
};
|
|
|
|
extern void show_siginfo(int fd);
|
|
extern void sk_queue_data_handler(int fd, void *obj);
|
|
extern void ipc_shm_handler(int fd, void *obj);
|
|
extern void ipc_msg_handler(int fd, void *obj);
|
|
extern void ipc_sem_handler(int fd, void *obj);
|
|
extern int cr_parse_fd(int fd, u32 magic);
|
|
extern void show_tcp_stream(int fd, void *obj);
|
|
|
|
#endif /* __CR_SHOW_H__ */
|