criu/include/kerndat.h
Cyrill Gorcunov 291aa3f6d6 headers: Add extern specificator to functions
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>
2013-11-15 17:00:58 +04:00

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__ */