mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 17:14:28 +00:00
This thing is global, we can address one explicitly. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
14 lines
347 B
C
14 lines
347 B
C
#ifndef __CR_SK_QUEUE_H__
|
|
#define __CR_SK_QUEUE_H__
|
|
|
|
#include "asm/types.h"
|
|
#include "list.h"
|
|
#include "crtools.h"
|
|
#include "image.h"
|
|
|
|
extern int read_sk_queues(void);
|
|
extern int dump_sk_queue(int sock_fd, int sock_id);
|
|
extern void show_sk_queues(int fd);
|
|
extern int restore_sk_queue(int fd, unsigned int peer_id);
|
|
|
|
#endif /* __CR_SK_QUEUE_H__ */
|