Daisuke HATAYAMA | 088e7af | 2010-03-05 13:44:06 -0800 | [diff] [blame] | 1 | #ifndef _LINUX_COREDUMP_H |
| 2 | #define _LINUX_COREDUMP_H |
| 3 | |
| 4 | #include <linux/types.h> |
| 5 | #include <linux/mm.h> |
| 6 | #include <linux/fs.h> |
Richard Weinberger | 1d46e23 | 2012-10-19 13:56:47 -0700 | [diff] [blame] | 7 | #include <asm/siginfo.h> |
Daisuke HATAYAMA | 088e7af | 2010-03-05 13:44:06 -0800 | [diff] [blame] | 8 | |
| 9 | /* |
| 10 | * These are the only things you should do on a core-file: use only these |
| 11 | * functions to write out all the necessary info. |
| 12 | */ |
Linus Torvalds | 3aa0ce8 | 2010-10-14 14:32:06 -0700 | [diff] [blame] | 13 | extern int dump_write(struct file *file, const void *addr, int nr); |
| 14 | extern int dump_seek(struct file *file, loff_t off); |
Alex Kelly | 179899f | 2012-10-04 17:15:24 -0700 | [diff] [blame] | 15 | #ifdef CONFIG_COREDUMP |
Al Viro | 541880d | 2012-11-05 13:11:26 -0500 | [diff] [blame] | 16 | extern void do_coredump(siginfo_t *siginfo); |
Alex Kelly | 179899f | 2012-10-04 17:15:24 -0700 | [diff] [blame] | 17 | #else |
Al Viro | 541880d | 2012-11-05 13:11:26 -0500 | [diff] [blame] | 18 | static inline void do_coredump(siginfo_t *siginfo) {} |
Alex Kelly | 179899f | 2012-10-04 17:15:24 -0700 | [diff] [blame] | 19 | #endif |
Daisuke HATAYAMA | 088e7af | 2010-03-05 13:44:06 -0800 | [diff] [blame] | 20 | |
| 21 | #endif /* _LINUX_COREDUMP_H */ |