mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-25 02:58:54 +00:00
We really have a mess of extern/non-extern declaration of functions in our headers. Always use extern for unification purpose. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
23 lines
478 B
C
23 lines
478 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
|
|
*/
|
|
|
|
extern int kerndat_init(void);
|
|
extern int kerndat_init_rst(void);
|
|
extern int kerndat_get_dirty_track(void);
|
|
|
|
extern dev_t kerndat_shmem_dev;
|
|
extern bool kerndat_has_dirty_track;
|
|
|
|
extern int tcp_max_wshare;
|
|
extern int tcp_max_rshare;
|
|
|
|
extern int kern_last_cap;
|
|
|
|
#endif /* __CR_KERNDAT_H__ */
|