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.
|
|
|
|
*/
|
2010-10-15 05:32:06 +08:00
|
|
|
extern int dump_write(struct file *file, const void *addr, int nr);
|
|
|
|
extern int dump_seek(struct file *file, loff_t off);
|
2012-10-05 08:15:24 +08:00
|
|
|
#ifdef CONFIG_COREDUMP
|
2012-11-06 02:11:26 +08:00
|
|
|
extern void do_coredump(siginfo_t *siginfo);
|
2012-10-05 08:15:24 +08:00
|
|
|
#else
|
2012-11-06 02:11:26 +08:00
|
|
|
static inline void do_coredump(siginfo_t *siginfo) {}
|
2012-10-05 08:15:24 +08:00
|
|
|
#endif
|
2010-03-06 05:44:06 +08:00
|
|
|
|
|
|
|
#endif /* _LINUX_COREDUMP_H */
|