mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
16 lines
323 B
C
16 lines
323 B
C
#ifndef __CR_KERNDAT_H__
|
|
#define __CR_KERNDAT_H__
|
|
|
|
#include "asm/types.h"
|
|
|
|
/*
|
|
* kerndat stands for "kernel data" and is a collection
|
|
* of run-time information about current kernel
|
|
*/
|
|
|
|
int kerndat_init(void);
|
|
int kerndat_get_dirty_track(void);
|
|
|
|
extern dev_t kerndat_shmem_dev;
|
|
extern bool kerndat_has_dirty_track;
|
|
#endif
|