nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / coredump.h
CommitLineData
088e7af7
DH
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>
1d46e232 7#include <asm/siginfo.h>
088e7af7
DH
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 */
3aa0ce82
LT
13extern int dump_write(struct file *file, const void *addr, int nr);
14extern int dump_seek(struct file *file, loff_t off);
179899fd 15#ifdef CONFIG_COREDUMP
541880d9 16extern void do_coredump(siginfo_t *siginfo);
179899fd 17#else
541880d9 18static inline void do_coredump(siginfo_t *siginfo) {}
179899fd 19#endif
088e7af7
DH
20
21#endif /* _LINUX_COREDUMP_H */