2010-03-06 05:44:06 +08:00
|
|
|
#ifndef _LINUX_COREDUMP_H
|
|
|
|
#define _LINUX_COREDUMP_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/fs.h>
|
2012-10-20 04:56:47 +08:00
|
|
|
#include <asm/siginfo.h>
|
2010-03-06 05:44:06 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* These are the only things you should do on a core-file: use only these
|
|
|
|
* functions to write out all the necessary info.
|
|
|
|
*/
|
2013-10-06 03:32:35 +08:00
|
|
|
struct coredump_params;
|
2013-10-08 21:26:08 +08:00
|
|
|
extern int dump_skip(struct coredump_params *cprm, size_t nr);
|
2013-10-06 03:32:35 +08:00
|
|
|
extern int dump_emit(struct coredump_params *cprm, const void *addr, int nr);
|
2013-10-08 23:05:01 +08:00
|
|
|
extern int dump_align(struct coredump_params *cprm, int align);
|
2012-10-05 08:15:24 +08:00
|
|
|
#ifdef CONFIG_COREDUMP
|
2013-10-14 05:57:29 +08:00
|
|
|
extern void do_coredump(const siginfo_t *siginfo);
|
2012-10-05 08:15:24 +08:00
|
|
|
#else
|
2013-10-14 05:57:29 +08:00
|
|
|
static inline void do_coredump(const siginfo_t *siginfo) {}
|
2012-10-05 08:15:24 +08:00
|
|
|
#endif
|
2010-03-06 05:44:06 +08:00
|
|
|
|
|
|
|
#endif /* _LINUX_COREDUMP_H */
|